import { ReadStream } from 'fs'; import { Asset } from './consts'; export declare const addAsset: (params: { image: File | ReadStream; title?: string; path?: string; server?: string; }) => Promise; export declare const getAsset: ({ id }: { id: string; }) => Promise; export declare const getAssets: () => Promise; export declare const deleteAsset: ({ id }: { id: string; }) => Promise;