import { type AppLoadContext } from "@remix-run/server-runtime"; import { type Plugin } from "vite"; import { type GetPlatformProxyOptions, type PlatformProxy } from "wrangler"; type CfProperties = Record; type LoadContext = { cloudflare: Omit, "dispose">; }; type GetLoadContext = (args: { request: Request; context: LoadContext; }) => AppLoadContext | Promise; export declare const cloudflareDevProxyVitePlugin: ({ getLoadContext, ...options }?: { getLoadContext?: GetLoadContext | undefined; } & GetPlatformProxyOptions) => Plugin; export {};