import { default as React } from 'react'; type ToggleSwitchProps = { id?: string; checked: boolean; onChange: (checked: boolean) => void; disabled?: boolean; label?: string; 'aria-label'?: string; }; export declare const ToggleSwitch: React.FC; export {};