/// import { Configuration } from '../configuration'; import { Transport } from './transport'; declare class Network { private readonly config; private readonly transport; constructor(config: Configuration, transport: Transport); private backoffConfig; private retryWhenThrottled; private executeWithRetry; get(url: string): Promise; post(url: string, media: string | Buffer | Blob | FormData, contentType?: string): Promise; } export { Network };