export declare class FilesService { url: string; setUrl: (api: any) => void; file: { get: (body: { fileId: string; }) => Promise; download: (body: { fileId: string; }) => Promise; delete: (body: { fileId: string; }) => Promise; }; }