import { LabelTypes } from './../types'; export declare type UpdateLabelPayload = { id: string; createdAt: string; assetId: string; updatedAt: string; typeName: LabelTypes; }; export declare function updateLabel(id: string, label: string, typeName: string): Promise;