/** * Configuration types, defaults, loading and merging. */ export interface PiTsLintConfig { changeComplexity: { minAbsoluteLines: number; minPercentage: number; }; diffThreshold: { minErrorsToShow: number; maxAbsoluteLines: number; maxPercentage: number; }; } export declare const DEFAULT_CONFIG: PiTsLintConfig; export declare function resolveConfig(cwd: string): PiTsLintConfig;