import { HTMLAttributes } from 'react'; interface IconCheckboxProps extends Omit, 'children' | 'onChange' | 'disabled'> { title?: string; titleOff?: string; onChange?: () => void; active?: boolean; disabled?: boolean; children: React.ReactElement | React.ReactElement[]; } export declare function IconCheckbox({ children, title, titleOff, onChange, active, disabled, }: IconCheckboxProps): import("react/jsx-runtime").JSX.Element; export {};