export declare function getSectionHeader(headerText: string): { stack: { table: { widths: string[]; body: { text: string; }[][]; }; style: string; }[]; }; export declare function getHTML(htmlContent: string): { stack: { stack: import("pdfmake/interfaces").Content; }[]; }; export declare function getTextInput(label: string, value: string | undefined): { stack: ({ text: string; style: string; table?: undefined; } | { table: { widths: string[]; body: { text: string | undefined; }[][]; }; style: string; text?: undefined; })[]; }; export declare function getTextInputNoLabel(value: string | undefined): { stack: { table: { widths: string[]; body: { text: string | undefined; }[][]; }; style: string; }[]; }; export declare function getDateInput(label: string, value: Date | undefined): { stack: ({ text: string; style: string; table?: undefined; } | { table: { widths: (string | number)[]; body: ({ text: string; image?: undefined; width?: undefined; } | { image: string; width: number; text?: undefined; })[][]; }; style: string; text?: undefined; })[]; }; export declare function getSelectInput(label: string, value: String | undefined): { stack: ({ text: string; style: string; table?: undefined; } | { table: { widths: (string | number)[]; body: ({ text: String | undefined; image?: undefined; width?: undefined; } | { image: string; width: number; text?: undefined; })[][]; }; style: string; text?: undefined; })[]; }; export declare function getCurrencyInput(label: string, value: number | string | undefined, currencySymbol?: string, setCurrencSymbolyAsPrefix?: boolean): { stack: ({ text: string; style: string; table?: undefined; } | { table: { widths: string[]; body: { text: string; }[][]; }; style: string; text?: undefined; })[]; }; export declare function getTextareaInput(label: string, value: string | undefined): { stack: ({ text: string; style: string; table?: undefined; } | { table: { widths: string[]; body: { text: string | undefined; }[][]; }; style: string; text?: undefined; })[]; }; export declare function getRichTextareaInput(label: string, value: string | undefined): { stack: ({ text: string; style: string; table?: undefined; } | { table: { widths: string[]; body: { stack: import("pdfmake/interfaces").Content; }[][]; }; style: string; text?: undefined; })[]; }; export declare function getRadioInput(label: string, options: { itemLabel: string; selected: boolean; width: number | string | undefined; }[], optionLayout?: "vertical" | "horizontal"): { stack: any[]; }; export declare function getCheckboxInput(label: string | undefined, ischecked?: boolean, labelContentType?: "plaintext" | "html"): { columnGap: number; columns: ({ width: number; image: string; stack?: undefined; fontSize?: undefined; italics?: undefined; } | { width: string; stack: string | import("pdfmake/interfaces").Content[] | import("pdfmake/interfaces").ContentText | import("pdfmake/interfaces").ContentColumns | import("pdfmake/interfaces").ContentStack | import("pdfmake/interfaces").ContentUnorderedList | import("pdfmake/interfaces").ContentOrderedList | import("pdfmake/interfaces").ContentTable | import("pdfmake/interfaces").ContentAnchor | import("pdfmake/interfaces").ContentPageReference | import("pdfmake/interfaces").ContentTextReference | import("pdfmake/interfaces").ContentToc | import("pdfmake/interfaces").ContentTocItem | import("pdfmake/interfaces").ContentImage | import("pdfmake/interfaces").ContentSvg | import("pdfmake/interfaces").ContentQr | import("pdfmake/interfaces").ContentCanvas | (string | undefined)[]; fontSize: number; italics: boolean; image?: undefined; })[]; };