import { IStorageProvider, PresignedPostData, StorageQuota } from "./IStorageProvider.js"; export declare class ChurchAppsStorageProvider implements IStorageProvider { readonly name = "churchapps"; private rootPath; store(key: string, contentType: string, contents: Buffer): Promise; getUploadUrl(key: string, _contentType: string, _size: number): Promise; remove(key: string): Promise; removeFolder(key: string): Promise; list(prefix: string): Promise; move(oldKey: string, newKey: string): Promise; getQuota(_churchId: string): Promise; private storeLocal; } //# sourceMappingURL=ChurchAppsStorageProvider.d.ts.map