import type { Context } from '../context.js'; export interface StorageConfig { provider: 's3' | 'r2'; accessKeyId: string; secretAccessKey: string; region?: string; accountId?: string; bucket: string; endpoint?: string; } export declare function storagePlugin(config: StorageConfig): (ctx: Context, next: () => Promise) => Promise; //# sourceMappingURL=storage.d.ts.map