import type { SwitchProps } from '.';
export default function useSwitch({ checked, onChange }: Pick<SwitchProps, 'onChange' | 'checked'>): {
    progress: Readonly<{
        value: 0 | 1;
    }>;
    toggle: () => void;
};
//# sourceMappingURL=useSwitch.d.ts.map