export declare const IPV4_PART_COUNT = 4; export declare const IPV4_BYTE_COUNT = 4; export declare const IPV6_PART_COUNT = 8; export declare const IPV6_BYTE_COUNT = 16; export declare class IpNotationUtils { static regularNotationV4(bytes: number[]): string; static shortNotationV4(bytes: number[]): string; static fullNotationV4(bytes: number[]): string; static regularNotationV6(bytes: number[]): string; static shortNotationV6(bytes: number[]): string; static fullNotationV6(bytes: number[]): string; private static padLeft; }