import { KeyValuePair, ModelError } from '../types';
/**
 * Represents the model validation errors
 */
export declare class DinoModel {
    isValid?: boolean;
    /**
     * Key - Param key, Value - Param value
     */
    values?: KeyValuePair[];
    /**
     * Key - Param key, Value - List of validation errors
     */
    errors: ModelError[];
}
