import { EventHandler, CSSProperties } from 'react';
import { BaseComponentAttributes, BasicSizeType } from '../utils/types';
export interface SwitchProps extends BaseComponentAttributes {
    style?: CSSProperties;
    size?: BasicSizeType;
    defaultChecked?: boolean;
    checked?: boolean;
    disabled?: boolean;
    readOnly?: boolean;
    loading?: boolean;
    vibrative?: boolean;
    onChange?: (value: any, event: EventHandler<any>) => void;
}
declare const _default: import("react").ForwardRefExoticComponent<SwitchProps & import("react").RefAttributes<any>>;
export default _default;
