import { type DetailsComponent } from '@defra/forms-model'; import { ComponentBase } from '~/src/server/plugins/engine/components/ComponentBase.js'; export declare class Details extends ComponentBase { options: DetailsComponent['options']; content: DetailsComponent['content']; constructor(def: DetailsComponent, props: ConstructorParameters[1]); getViewModel(): { html: string; summaryHtml: string; label?: import("./types.js").Label; type?: string; id?: string; name?: string; value?: import("../types.js").FormValue; hint?: { id?: string; text: string; }; prefix?: import("./types.js").ComponentText; suffix?: import("./types.js").ComponentText; classes?: string; condition?: string; errors?: import("../types.js").FormSubmissionError[]; errorMessage?: { text: string; }; attributes: { autocomplete?: string; maxlength?: number; multiple?: string; accept?: string; inputmode?: string; }; content?: import("./types.js").Content | import("./types.js").Content[] | string; maxlength?: number; maxwords?: number; rows?: number; items?: import("./types.js").ListItem[] | import("./types.js").DateInputItem[]; fieldset?: { attributes?: string | Record; legend?: import("./types.js").Label; }; formGroup?: { classes?: string; attributes?: string | Record; }; showFieldsetError?: boolean; components?: import("./types.js").ComponentViewModel[]; upload?: { count: number; summaryList: import("../types.js").SummaryList; }; }; }