import { FC } from 'react'; import { InputSize, LabelPosition } from 'types'; interface IToogle { theme?: any; handleClick: (value: boolean) => void; label?: string; labelPosition?: LabelPosition; size?: InputSize; value: boolean; readOnly?: boolean; name?: string; width?: string; } export declare const Toogle: FC; export {};