import { BasicRedactor } from "./basic-redactor.js";
import type { RedactionResult } from "./index.js";
export declare class IpRedactor extends BasicRedactor {
    private static readonly IPV4_REGEX;
    private static readonly IPV6_REGEX;
    protected redact(value: string): RedactionResult<{
        counters: Record<string, number>;
    }>;
}
