import { default as React } from 'react';

export interface BooleanProps {
    id?: string;
    label?: string;
    value?: boolean;
    default?: boolean;
    required?: boolean;
    readonly?: boolean;
    path: string;
    handleChange?: (path: string, value: boolean) => void;
}
declare const Boolean: React.FC<BooleanProps>;
export default Boolean;
