import { type Target } from './schema.ts'; export declare const args: { target: { type: "string"; description: string; choices: ("module" | "commonjs" | "typescript" | "codegen")[]; }; }; type Argv = { $0: string; target?: Target; }; export declare function build(argv: Argv): Promise; export {};