import { FC } from '@dineug/r-html';
export type SwitchProps = {
    size?: '1' | '2' | '3';
    value: boolean;
    onChange: (value: boolean) => void;
};
declare const Switch: FC<SwitchProps>;
export default Switch;
