/**
 * Checks if a hostname resolves to a local IP address
 * @param hostname The hostname to check
 * @returns Promise<boolean | null> - true if local, false if not local, null if error
 */
export declare function isHostLocal(hostname: string): Promise<boolean | null>;
export default isHostLocal;
