export interface SwitchProps { label: string; defaultChecked?: boolean; disabled?: boolean; onChange?: (checked: boolean) => void; color?: "blue" | "gray"; id?: string; name?: string; required?: boolean; "aria-label"?: string; "aria-describedby"?: string; } export declare const Switch: import('react').ForwardRefExoticComponent>;