declare const cloud: CloudCommands;
type Args = Record<string, string> | null;
type CloudCommands = Record<string, {
    [k: string]: (args?: Args) => Promise<unknown>;
}>;
export declare function run(command: string, args?: Args): Promise<unknown>;
export declare function auth(key: string): Promise<void>;
export default cloud;
