import { CheckIfPathExistsPayload, CheckIfPathIsDirectoryPayload, FileSystemService, GetAllFilesFromDirectoryPayload, ReadFilePayload } from './fileSystemService.js'; export declare class FileSystemServiceImpl implements FileSystemService { checkIfPathIsDirectory(payload: CheckIfPathIsDirectoryPayload): Promise; checkIfPathExists(payload: CheckIfPathExistsPayload): boolean; getAllFilesFromDirectory(payload: GetAllFilesFromDirectoryPayload): Promise; private getAllFilesFromDirectoryHelper; readFile(payload: ReadFilePayload): Promise; } //# sourceMappingURL=fileSystemServiceImpl.d.ts.map