/** * Accessibility Handler * * Handles saving accessibility audit reports to the file system. */ export interface A11ySaveResult { a11yPath: string; } /** * Handle accessibility audit save: saves the report as markdown to the screenshots folder */ export declare function handleSaveA11y(data: { markdown: string; url: string; title: string; timestamp: number; }): Promise; //# sourceMappingURL=a11y.d.ts.map