import { Argv } from "yargs"; import { LoadConfig } from "../types"; export declare const command = "load [options]"; export declare const describe = "Load results from a file, and report them"; export declare const builder: (yargs: Argv) => Argv; export declare const handler: (argv: LoadConfig) => Promise;