import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
export declare const importsMapJobInfo: {};
/**
 * The REST response with a job result.
 */
export declare class JobInfo implements ModelInterface {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the job id.
     */
    jobId: string;
    /**
     * Gets or sets the job message.
     */
    message: string;
    /**
     * Gets or sets the job status.
     */
    status: JobInfo.StatusEnum;
    constructor(init?: Partial<JobInfo>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
/**
 * Enums for JobInfo
 */
export declare namespace JobInfo {
    enum StatusEnum {
        Unknown,
        Queued,
        Processing,
        Succeded,
        Failed
    }
}
