import { ParsingToken } from '@oclif/parser/lib/parse'; export declare const buildCommand: (baseCommand: string, { defaultArgs, rawArgs, flags }?: { defaultArgs?: any; rawArgs?: ParsingToken[] | undefined; flags?: string[] | undefined; }) => string; export declare const runCommand: (command: string, { handleError }?: { handleError?: boolean | undefined; }) => Buffer; export declare const getConfigFilePath: (name: string) => string; export declare const buildPath: (...args: any) => string; export declare const sortObjKeys: (obj: object) => {};