export declare class SncIPAddress { /** * @Deprecated */ constructor(asString: string); /** * @Deprecated */ constructor(address: string, ...notations: any[]); /** * @Deprecated * Returns an IPAddress instance for the given IP or host string. */ static get(ipOrHost: string): SncIPAddress; /** * @Deprecated - please use canonicalize(String) instead. * Returns the canonical string representation of the given IP or host. */ static getString(ipOrHost: string): string; }