import type { SwitchProps as AntdSwitchProps } from 'tntd/lib/switch'; import type { FC } from 'react'; export type SwitchProps = AntdSwitchProps & { value?: boolean; }; export declare const Switch: FC; export default Switch;