type LogValue = string | number | boolean | LogObject | Array<LogValue> | null | undefined;
export interface LogObject {
    [key: string]: LogValue;
}
declare const _default: (sensitiveKeys?: string[]) => (info: LogObject) => any;
export default _default;
//# sourceMappingURL=sanitize.d.ts.map