import { default as React } from 'react';
export interface FieldSetProps extends React.PropsWithChildren {
    /**
     * a CSS classanme
     */
    className?: string;
    /** Check/uncheck Checkbox */
    checked?: boolean;
    /** Title to be rendered on top of the FieldSet */
    title?: string;
    /** Callback function for onChange of the checkbox  */
    onCheckChange?: (e: any) => void;
}
/**
 * A container for grouping sets of fields similar to a HTML fieldset element.
 * A title and a checkbox will be rendered on the top border of the component.
 */
export declare const FieldSet: React.FC<FieldSetProps>;
