import yargs from "yargs"; import "asar-require"; export declare type CliOptions = yargs.Argv<{}> & { commandArgs: string[]; }; export declare type RunCallback = (error?: string | Error | null) => any; export declare function run(args: any, callback: RunCallback): any;