import { FC, InputHTMLAttributes } from 'react'; import { ToggleStyledProps } from './styled'; export type ToggleProps = ToggleStyledProps & InputHTMLAttributes; export declare const Toggle: FC;