import type { FormItemElement } from './FormItemElement.js'; export interface FormSectionElement { id: string; header?: string; footer?: string; items: FormItemElement[]; } export type SectionInfo = { id: string; header?: string; footer?: string; }; export declare function Section(params: string | SectionInfo, items: (FormItemElement | undefined)[]): FormSectionElement; //# sourceMappingURL=FormSection.d.ts.map