import { type PropsWithChildren } from "react"; export interface ToggleSwitchProps { label: string; name?: string; disabled?: boolean; /** HTML title attribute */ title?: string; /** Maximum two lines of text. */ description?: string; /** `value` and `onChange` are optional because we want to be able to use the control in an uncontrolled manner as well (for example, in forms) */ value?: boolean; onChange?: (value: boolean) => void; defaultChecked?: boolean; } declare const _default: import("react").NamedExoticComponent; export default _default; export type ToggleSwitchStackProps = PropsWithChildren; export declare const ToggleSwitchStack: import("react").NamedExoticComponent<{ children?: import("react").ReactNode | undefined; }>;