export type ClientIpRequest = { ip?: string; ips?: string[]; headers?: Record; socket?: { remoteAddress?: string; }; connection?: { remoteAddress?: string; }; }; export declare function getClientIp(req: ClientIpRequest): string;