import React from "react"; export declare type SelectableListItemProps = { aria?: { [key: string]: string; }; children: React.ReactNode[] | React.ReactNode; checked?: boolean; className?: string; data?: object; defaultChecked?: boolean; id?: string; label?: string; text?: string; name?: string; value?: string; variant?: string; onChange: (arg: React.ChangeEvent | null) => void; }; declare const SelectableListItem: ({ aria, checked, children, className, data, defaultChecked, id, label, text, name, value, variant, onChange, ...props }: SelectableListItemProps) => JSX.Element; export default SelectableListItem;