export interface FieldStory { label: string; xml: string; } export type FieldStructureIssue = { code: string; message: string; story?: string; element?: string; }; export declare function hasFldCharInsideDel(documentXml: string): boolean; export declare function collectFieldStructureIssues(input: string | FieldStory[]): FieldStructureIssue[]; export declare function validateFieldStructure(input: string | FieldStory[]): boolean; //# sourceMappingURL=field-structure.d.ts.map