import React from 'react'; import IReactComponentProps from '../../../common/structures/IReactComponentProps'; interface ISvgProps { className?: string; } interface IProps extends IReactComponentProps { checked?: boolean; onChange?: (checked: boolean) => void; Icon: React.FC; disabled?: boolean; name?: string; label?: string | undefined; /** Whether to override svg icon path colors * */ useIconColorsOnChecked?: boolean; useIconColorsOnCheckedHover?: boolean; useIconColorsOnUnchecked?: boolean; useIconColorsOnUncheckedHover?: boolean; } export declare const IconCheckbox: React.FC; export default IconCheckbox; //# sourceMappingURL=IconCheckbox.d.ts.map