import { HttpRequest, MockProxyUserOptions } from "../../types"; /** * Get mock path/filename from request data and options */ export declare class MockFileLocator { private readonly options; private readonly request; constructor(options: MockProxyUserOptions, request: HttpRequest); /** * Returns filename without extension, query parameters and scenarios (first path of filename before "." (dot sign)) */ private getMockCommonPart; getMockFilename: () => string; /** * Check is file can be associated with the request * @param filename Filename (without path) */ isFileMatched: (filename: string) => boolean; getMockDirectory(): string; getMockPath(): string; }