import { StyleValue } from 'vue'; import { ISwitchRenderlessParams, ISwitchClass } from '../switch'; export declare const toggle: ({ emit, props, state }: Pick) => (event: KeyboardEvent | MouseEvent) => void; export declare const computedWarpClasses: ({ prefixCls, props, state }: Pick) => () => ISwitchClass; export declare const computedInnerClasses: ({ prefixCls }: Pick) => () => string; export declare const computedStyle: ({ props, state }: Pick) => () => StyleValue;