import type { SwitchProps } from 'antd';
export type LoadableSwitchProps = Omit<SwitchProps, 'loading'>;
declare const LoadableSwitch: FC<LoadableSwitchProps>;
export { LoadableSwitch };
