import { TestFileProvider } from './classes.testfileprovider.js'; import * as plugins from './plugins.js'; declare class TapNodeTools { private smartshellInstance; testFileProvider: TestFileProvider; constructor(); private qenv; getQenv(): Promise; getEnvVarOnDemand(envVarNameArg: string): Promise; runCommand(commandArg: string): Promise; createHttpsCert(commonName?: string, allowSelfSigned?: boolean): Promise<{ key: string; cert: string; }>; /** * create and return a smartmongo instance */ createSmartmongo(): Promise; /** * create and return a smarts3 instance */ createSmarts3(): Promise; } export declare const tapNodeTools: TapNodeTools; export {};