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