import { redact } from './redact';
import { PurgoOptions, PinoRedactorOptions } from './types';
/**
 * Create a Pino redactor function
 */
export declare function pinoRedactor(options: PinoRedactorOptions): {
    paths: string[];
    censor: (value: any) => any;
};
/**
 * Initialize Node.js patches
 */
export declare function initNodePatches(options?: PurgoOptions): void;
export { redact };
