import { Storage } from '@google-cloud/storage'; import { ConsoleService } from './ConsoleService'; import { ConventionService } from './ConventionService'; export declare class BucketFileService { private console; private conventions; storage: Storage; bucket: string; constructor(console: ConsoleService, conventions: ConventionService); setupBucket(bucket?: string, service_file?: string): void; exists(file_path: string): Promise; upload(file_path: string, remote_path: string): Promise; delete(file_path: string): Promise; }