/// export interface Props { checked?: boolean; setChecked?: (val: boolean) => void; icon?: string; label?: string; width?: number; error?: string; isDisabled?: boolean; sizer?: 'M' | 'S'; } export declare const Checkbox: ({ checked, setChecked, label, sizer, icon, width, error, isDisabled, ...props }: Props) => JSX.Element;