export interface CreateUploadDestinationForResourceQuery {
    marketplaceIds: string[];
    contentMD5: string;
    contentType?: string;
}
export interface CreateUploadDestinationResponse {
    payload?: UploadDestination;
    errors?: ErrorList;
}
export interface Error {
    code: string;
    message: string;
    details?: string;
}
export type ErrorList = Error[];
export interface UploadDestination {
    uploadDestinationId?: string;
    url?: string;
    headers?: {
        [key: string]: string;
    };
}
//# sourceMappingURL=v2020-11-01.d.ts.map