/** * `import css from './x.css?raw'` for the kit's own tsc program. * * `token-values.test.ts` reaches across into `showcase/src/chrome/`, which pulls * a showcase module into `tsconfig.json`'s program — and that program does not * see `vite/client`, where this declaration normally comes from * (`showcase/src/vite-env.d.ts` references it for the showcase's own program). * * Only the one form is declared, rather than adding `vite/client` wholesale. * That would also hand `src/` a typed `import.meta.env`, and `src/` is the * published half: it is compiled by tsup for consumers who have no Vite, so a * `import.meta.env.DEV` written there has to stay a type error. */ declare module '*?raw' { const content: string; export default content; }