export declare const createCli: () => {
    values: {
        cwd: string | undefined;
        help: boolean | undefined;
        debug: boolean | undefined;
    };
    positionals: string[];
};
export declare const run: (cli?: {
    values: {
        cwd: string | undefined;
        help: boolean | undefined;
        debug: boolean | undefined;
    };
    positionals: string[];
}) => Promise<{
    exitStatus: number;
    stdout: string | null;
    stderr: Error | null;
}>;
//# sourceMappingURL=cli.d.ts.map