/** * Argument parser for the `weft codegen` subcommand. Kept in its own * module so {@link parse-arguments} doesn't grow past the per-file * size budget. * * @module cli/codegen-arguments */ import type { CliCommand } from './types.ts'; /** Parse a `weft codegen ...` argument list. */ export declare function parseCodegenArguments(args: string[]): CliCommand;