import { Switch, type SwitchRootBaseProps } from '@ark-ui/svelte/switch';
interface Props extends SwitchRootBaseProps {
    labelSpacer?: boolean;
    layout?: 'vertical' | 'horizontal';
}
declare const Switch: import("svelte").Component<Props, {}, "checked">;
type Switch = ReturnType<typeof Switch>;
export default Switch;
