export type CliRunResult = { readonly status: number; readonly stdout: string; readonly stderr: string; }; type BearshellOptions = { readonly cwd?: string; readonly env?: Readonly>; }; export declare function bearshellUsage(invocation?: string): string; export declare function runBearshell(args: readonly string[], options?: BearshellOptions, invocationName?: string): CliRunResult; export {};