import { CompilerContext } from "../../contexts/compiler.js"; import { Program } from "oxc-parser"; /** * Options for the `process` function. */ type ProcessOptions = { /** * The compiler context. */ context: CompilerContext; /** * The program to be processed. */ program: Program; /** * The reference program. */ programRef: Program; }; /** * Result of the `process` function. */ type ProcessResult = { /** * The processed program. */ program: Program; /** * The processed CSS. */ css: string; /** * The processed CSS separated by elements. */ cssList: string[]; }; /** * Process function. */ declare const process: (options: ProcessOptions) => ProcessResult; export { type ProcessOptions, type ProcessResult, process }; //# sourceMappingURL=index.d.ts.map