import { SpaceResource } from '../helpers'; import { WebDavOptions } from './types'; import { DAV, DAVRequestOptions } from './client'; import { ResponseType } from 'axios'; export type GetFileContentsResponse = { body: any; [key: string]: any; }; export declare const GetFileContentsFactory: (dav: DAV, { axiosClient }: WebDavOptions) => { getFileContents(space: SpaceResource, { fileId, path }: { fileId?: string; path?: string; }, { responseType, noCache, headers, ...opts }?: { responseType?: ResponseType; noCache?: boolean; } & DAVRequestOptions): Promise; };