import type { FormControlProps } from './FormControl.js';
export interface SwitchProps extends FormControlProps<boolean> {
    width?: number;
}
export declare function Switch(props: SwitchProps): import("react/jsx-runtime").JSX.Element;
