import { HTMLAttributes, default as React } from 'react';
import { LabelProps } from '../Label/types';
export interface FieldGroupOptions {
    hideLabel?: boolean;
    label: React.ReactNode;
    required?: LabelProps['required'];
}
export type FieldGroupProps = FieldGroupOptions & HTMLAttributes<HTMLFieldSetElement>;
