import * as switch_ from '@zag-js/switch';
import type { Accessor } from '../types.js';
export interface CreateSwitchProps extends Omit<switch_.Props, 'dir' | 'getRootNode'> {
}
export interface CreateSwitchReturn extends switch_.Api {
}
export declare function createSwitch(props: Accessor<CreateSwitchProps>): Accessor<CreateSwitchReturn>;
