type Mode = "development" | "production" | "test";
export type Options = {
    mode: Mode | Omit<string, Mode>;
    sourcemap: boolean;
    REMIX_DEV_ORIGIN?: URL;
};
export {};
