import { SwitchChangeEventHandler, SwitchClickEventHandler, SwitchProps as AntdSwitchProps, SwitchSize } from 'antd/es/switch'; export type SwitchProps = { disabled?: boolean; size?: SwitchSize; dataId?: string; ariaLabel?: string; onChange?: SwitchChangeEventHandler; onClick?: SwitchClickEventHandler; } & AntdSwitchProps; export declare const Switch: import('react').ForwardRefExoticComponent<{ disabled?: boolean; size?: SwitchSize; dataId?: string; ariaLabel?: string; onChange?: SwitchChangeEventHandler; onClick?: SwitchClickEventHandler; } & AntdSwitchProps & { dataId?: string; } & import('react').RefAttributes>;