/** * get CLI command line runner * * @export * @returns {({ * command: string, * info: { * global: boolean, * version: string | number * } * })} */ export declare function dotnetFactory(): LoadedCLI; export declare function mockDotnetFactory(version?: string): LoadedCLI; export type LoadedCLI = { command: string; info: { global: boolean; version: string | number; }; }; export type DotnetFactory = () => LoadedCLI;