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