import { LabelsBetweenObjectPair } from '../models/LabelsBetweenObjectPair';
import { StandardError } from '../models/StandardError';
export declare class BatchResponseLabelsBetweenObjectPairWithErrors {
    'status': BatchResponseLabelsBetweenObjectPairWithErrorsStatusEnum;
    'results': Array<LabelsBetweenObjectPair>;
    'numErrors'?: number;
    'errors'?: Array<StandardError>;
    'requestedAt'?: Date;
    'startedAt': Date;
    'completedAt': Date;
    'links'?: {
        [key: string]: string;
    };
    static readonly discriminator: string | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
export type BatchResponseLabelsBetweenObjectPairWithErrorsStatusEnum = "PENDING" | "PROCESSING" | "CANCELED" | "COMPLETE";
