import { PublicAssociationMultiWithLabel } from '../models/PublicAssociationMultiWithLabel';
import { StandardError } from '../models/StandardError';
export declare class BatchResponsePublicAssociationMultiWithLabelWithErrors {
    'status': BatchResponsePublicAssociationMultiWithLabelWithErrorsStatusEnum;
    'results': Array<PublicAssociationMultiWithLabel>;
    '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 BatchResponsePublicAssociationMultiWithLabelWithErrorsStatusEnum = "PENDING" | "PROCESSING" | "CANCELED" | "COMPLETE";
