import type { PromptInput } from "../../types/functionalPromptType"; /** * Generate file name for test case based on input prompt details * @param {PromptInput} inputPromptDetails Input prompt details * @returns {string} Generated test case file name with .test.ts extension. */ export declare const fileNameFramer: (inputPromptDetails: PromptInput) => string; export declare function defineModuleImport(functions: string[], importPath: string, exportMapping: Record): string; export declare function getImportPath(inputPromptDetail: PromptInput): PromptInput; /** * Validate test file * @param {string} outputTestDir Output directory * @param {string} fileName File name * @param {boolean} overrideTestCase Override test case * @returns {boolean} True if the test file is valid, otherwise false if exists. */ export declare const validateTestFile: (outputTestDir: string, fileName: string, overrideTestCase?: boolean) => boolean; //# sourceMappingURL=FileNameFramerService.d.ts.map