import 'reflect-metadata'; import { HttpBase, PullZoneClient, StorageClient } from './clients'; import { Billing, Statistic } from './models'; export declare class Bunny extends HttpBase { private _pullZoneClient; readonly pullZone: PullZoneClient; private _storageClient; readonly storage: StorageClient; constructor(httpClient?: any); statistics(): Promise; billing(): Promise; applyCode(couponCode: string): Promise; purge(url: string): Promise; hardUpdate(host: string, storageZone: string, path: string, fileName: string, fileContents: string): Promise; }