import type http from "node:http"; interface CloudProxyConfigLike { cloud?: { apiKey?: string; baseUrl?: string; serviceKey?: string; }; } export interface CloudBillingRouteState { config: CloudProxyConfigLike; } export declare function handleCloudBillingRoute(req: http.IncomingMessage, res: http.ServerResponse, pathname: string, method: string, state: CloudBillingRouteState): Promise; export {}; //# sourceMappingURL=cloud-billing-routes.d.ts.map