import * as React from 'react';
export interface IProps {
    checked?: boolean;
    value?: string;
    name?: string;
    autoFocus?: any;
    disabled?: boolean;
    required?: boolean;
    onChange?: (event?: any) => void;
    id: string;
    label: string;
    css?: string;
}
declare const _default: React.MemoExoticComponent<({ id, label, ...props }: IProps) => JSX.Element>;
export default _default;
