import { type LabelProps } from '../common/label/label'; export declare class BiFieldset { /** The label of the fieldset. */ label: string; /** The font style of the label. */ labelFontStyle: LabelProps['labelFontStyle']; /** Marks the fieldset as required. */ required?: boolean; /** Marks the fieldset as disabled. */ disabled?: boolean; /** The help text to show below the fieldset. */ helptext?: string; /** The error message to show if `error` is true. */ errorMessage?: string; /** * If `true`, the fieldset will indicate an error. * @default false */ error?: boolean; /** Is the component displayed on a dark background. */ dark?: boolean; /** Display the contents in a row/horizontal direction. Use with caution, the standard should be vertical direction */ row?: boolean; render(): any; }