/// /** * Get the file name from the current test * * @returns The file name from the current test, the result will be: * `fileName.extension [description] it` * or if no description, just: * `fileName.extension it` */ export declare const getFileNameFromCurrentTest: () => string; export declare const getFilePath: (fileName: string | undefined, outputDir: string, type?: string, extension?: string) => string; export declare const getNormalizedFileNameFromCurrentTest: () => string; export declare const maxLengthFileName: (fileName: string, extension: string) => string; export declare const normalizeFileName: (fileName: string) => string;