import { ChangeEvent, InputHTMLAttributes } from 'react'; export type Props = InputHTMLAttributes & { toggle: boolean; onChange: (e: ChangeEvent) => void; label?: string; disabled?: boolean; }; declare function ToggleSwitch({ toggle, label, onChange, disabled, ...rest }: Props): import("react/jsx-runtime").JSX.Element; export declare const Toggle: typeof ToggleSwitch; export {}; //# sourceMappingURL=Toggle.component.d.ts.map