export interface ContextRedactorOptions { workspaceRoot: string; ignoreFilesFrom: string[]; redactPatterns: string[]; } export declare class ContextRedactor { private options; private matchers; private regexes; constructor(options: ContextRedactorOptions); loadIgnoreMatchers(): Promise; shouldIgnore(relativePath: string): boolean; redact(content: string): { content: string; redactions: number; }; } //# sourceMappingURL=ContextRedactor.d.ts.map