import CliCore from "./CliCore.js"; export type CommandAndResponse = { cmdName: string; args: string[]; expectedResponse: string; jsonataExpr: string; }; export declare function parseMarkdownAndTestCodeblocks(md: string, cliCore: CliCore, printFunction?: (k: any, v: any) => any): Promise; /** * Read the markdown file and extract the code blocks for testing. * @param {string} markdownPath Path to the markdown file. * @param {object} cliInstance An instance of the CLI class that has the methods to be tested. * @return {Array} Array of test data including commands and expected responses. */ export declare function parseMarkdownTests(markdownPath: string, cliInstance: CliCore): CommandAndResponse[]; //# sourceMappingURL=TestUtils.d.ts.map