import { AxiosRequestConfig } from 'axios'; /** * Collection of requests related to media. * * @public */ export declare class MediaRequests { /** * @param id - The allocated id of the media item to be uploaded. * @param media - The media item to upload. */ static appendUpload(id: string, media: string | ArrayBuffer): AxiosRequestConfig; /** * @param id - The allocated id of the media item. */ static finalizeUpload(id: string): AxiosRequestConfig; /** * @param size - The size (in bytes) of the media item to be uploaded. */ static initializeUpload(size: number): AxiosRequestConfig; }