import * as React from 'react';
import './index.scss';
export interface OadpSwitchProps {
    defaultChecked?: boolean;
    size?: 'small' | 'medium';
    autoWidth?: boolean;
    disabled?: boolean;
}
declare const OadpSwitch: React.FC<OadpSwitchProps>;
export default OadpSwitch;
