import { LabelTypes } from './../types'; import { SubmitLabelParam } from '../redux/reducer'; export declare type CreatedLabelPayload = { id: string; createdAt: string; assetId: string; typeName: LabelTypes; }; export declare function createLabel({ id, projectId, rowId, label, user, secondsToLabel, typeName, templateId, }: SubmitLabelParam): Promise;