import { StylableResults } from '../../src/index'; import { Config } from './generate-test-util'; export interface Diagnostic { severity?: 'warn' | 'error'; message: string; file: string; skipLocationCheck?: boolean; skip?: boolean; } export declare function findTestLocations(css: string): { start: { line: number; column: number; } | undefined; end: { line: number; column: number; } | undefined; word: string | null; css: string; }; export declare function expectWarnings(css: string, warnings: Diagnostic[]): void; export declare function expectWarningsFromTransform(config: Config, warnings: Diagnostic[]): StylableResults; //# sourceMappingURL=diagnostics.d.ts.map