declare type SelectableIconProps = { aria?: { [key: string]: string; }; checked?: boolean; className?: string; customIcon?: { [key: string]: SVGElement; }; disabled?: boolean; data?: Object; icon: string; inputId: string; inputs: string; multi?: boolean; name: string; text: string; value?: string; }; declare const SelectableIcon: ({ aria, className, checked, customIcon, data, disabled, icon, inputId, inputs, multi, name, text, value, ...props }: SelectableIconProps) => JSX.Element; export default SelectableIcon;