import type { IpAddress, IpV4, IpV6, IpKind, Cidr } from "./types.js"; export declare function parseIp(raw: string): IpAddress | null; export declare function isIpV4(ip: IpAddress): ip is IpV4; export declare function isIpV6(ip: IpAddress): ip is IpV6; export declare function ipKind(ip: IpAddress): IpKind; export declare function extractIp(raw: string): IpAddress | null; export declare function isCidr(value: string): value is Cidr; //# sourceMappingURL=validate.d.ts.map