export interface ScrubResult { text: string; hits: Array<{ rule: string; count: number; }>; } export declare function scrubSecrets(input: string): ScrubResult;