import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
export declare const importsMapClassificationResult: {};
/**
 * Represents a single classification result.
 */
export declare class ClassificationResult implements ModelInterface {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the name of the class.
     */
    className: string;
    /**
     * Gets or sets the probability of class.
     */
    classProbability: number;
    constructor(init?: Partial<ClassificationResult>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
