import type { DiagnosticWithLocation } from 'typescript'; /** * Sorts diagnostics by the `start` position with prioritization of diagnostic have codes in `prioritizedCodes`. * If the diagnostic has the code mentioned in the `prioritizedCodes` list, it will be moved to the start and will * be ordered against other prioritized codes in the order codes provided in the `prioritizedCodes`. */ export declare function getDiagnosticOrder(diagnostics: DiagnosticWithLocation[]): DiagnosticWithLocation[]; //# sourceMappingURL=get-diagnostics.d.ts.map