import { default as React } from 'react';
interface ToggleProps extends React.InputHTMLAttributes<HTMLInputElement> {
    children?: React.ReactNode;
    type?: "checkbox" | "radio";
    $wrapperClassName?: string;
    $label?: string;
    $size?: "default" | "big" | "small";
    $error?: boolean;
    $success?: boolean;
    $fullWidth?: boolean;
}
declare const Toggle: React.ForwardRefExoticComponent<ToggleProps & React.RefAttributes<HTMLInputElement>>;
export { Toggle };
