import { RuleHandler } from "./_chunks/types.mjs"; /** * Proxy rule handler: forwards the request to the rule's `to` target. For `/**` * wildcard targets the raw `event.url.pathname` is forwarded (encoded * separators stay opaque) after the shared scope check — see * {@link prepareRuleTarget}. Registered per matcher (`handlers: { proxy }`); no * shared instance is needed since the handler holds no state. */ declare const proxy: RuleHandler<"proxy">; export { proxy };