/** * The one import form the Web extension adds: `import css unsafe "./file.css"`, * with the same stated placement its inline sibling carries. */ import { type Statement } from "@velarscript/compiler/extension"; import { type UnsafeCssParserHost } from "./unsafe-css.ts"; export type ImportParserHost = UnsafeCssParserHost; export declare function parseCssImport(host: ImportParserHost, start: number): Statement | null | undefined; //# sourceMappingURL=imports.d.ts.map