export type ParsedCIDR = {
    ip: string;
    maskBits: number;
};
export declare function ParseCIDR(value: string): ParsedCIDR | null;
