import { GenerationTargetType } from "../getViewForSwagger2"; export interface LintOptions { readonly esnext: boolean; readonly lint: boolean; } export interface LintError { readonly reason: string; readonly evidence: string; readonly code: string; } export declare function lintCode(opts: LintOptions, type: GenerationTargetType, source: string): void; //# sourceMappingURL=lintCode.d.ts.map