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