import { TCheckboxProps } from '@/components/input/types/TCheckboxProps';
export type TToggleProps = Omit<TCheckboxProps, 'size' | 'type'>;
export declare function Toggle({ disabled, theme, onChange, id, className, checked }: TToggleProps): import("react/jsx-runtime").JSX.Element;
