import { Fieldset as FieldsetParent } from './fieldset'; import { FieldsetDescription } from './fieldset-description'; import { FieldsetLegend } from './fieldset-legend'; type Fieldset = typeof FieldsetParent & { /** * Fieldset.Legend component, used to display a legend for a fieldset. * * @example * Skriv inn dine svar */ Legend: typeof FieldsetLegend; /** * Fieldset.Description component, used to display a description for a fieldset. * * @example * * Gi en kort beskrivelse i begge feltene * */ Description: typeof FieldsetDescription; }; /** * Fieldset component, used to wrap a form field. * * @example *
* Skriv inn dine svar * * Gi en kort beskrivelse i begge feltene * * * * * *
*/ declare const FieldsetComponent: Fieldset; export type { FieldsetProps } from './fieldset'; export type { FieldsetDescriptionProps } from './fieldset-description'; export type { FieldsetLegendProps } from './fieldset-legend'; export { FieldsetComponent as Fieldset, FieldsetDescription, FieldsetLegend }; //# sourceMappingURL=index.d.ts.map