// Stub implementation for Firebase Storage Bucket export class FirebaseStorageBucketControl { async upload(data: any, path: string): Promise { // Stub implementation - returns a mock URL return `https://storage.googleapis.com/mock-bucket/${path}`; } async download(path: string): Promise { // Stub implementation - returns empty buffer return Buffer.alloc(0); } async downloadFile(path: string): Promise { // Stub implementation - returns empty buffer return Buffer.alloc(0); } async saveFile(path: string, data: Buffer, options?: any): Promise { // Do nothing - storage disabled } }