/** * Converts CIDR notation to a subnet mask * @param {number} cidr - CIDR notation (0-32) * @returns {string} Subnet mask in IPv4 format (e.g., "255.255.255.0") */ export declare const cidrToSubnetMask: (cidr: number) => string;