#!/usr/bin/env node export interface CliResult { code: number; lines: string[]; } /** `weight-eft export --archive a.json --eval-holdout h.json --out-dir ./out` */ export declare function exportCmd(args: string[]): Promise; /** `weight-eft train --base --params-b N --sft sft.jsonl [--dpo dpo.jsonl] --adapter [--train]` */ export declare function trainCmd(args: string[]): Promise; /** `weight-eft eval --base-outcomes b.json --adapter-outcomes a.json` */ export declare function evalCmd(args: string[]): Promise; export declare function statusCmd(): CliResult; export declare function dispatch(sub: string | undefined, args: string[]): Promise; //# sourceMappingURL=cli.d.ts.map