/** * Omit the `cookie` header from a set of headers. * This is useful when proxying requests for routes/proxied API requests * to ensure cookies are not forwarded. */ export declare const skipCookieHeader: (headers: Headers) => Headers; /** * Omit the x-toddle-url header from a set of headers. * Since this header is only relevant for toddle requests, it's not useful * for other services to receive this. */ export declare const skipToddleHeader: (headers: Headers) => Headers;