/** Fix all detected ASCII structures in the input text */ export declare function fixAsciiAlign(text: string): string; /** Check if any ASCII structures in the text are misaligned */ export declare function checkAlignment(text: string): { aligned: boolean; issues: string[]; }; //# sourceMappingURL=fix.d.ts.map