import type { Input, Variants } from '../types.ts'; import { type CompileOptions } from '../utils/compile.ts'; type Options = Input & { options?: CompileOptions; variants: Variants; exclude: string; }; export default function build({ root, source, output, exclude, options, variants, report, }: Options): Promise; export {};