import { AttributeInfo } from '../internal/attributeInfo';
import { LinkElement } from './linkElement';
import { Run } from './run';
export declare const importsMapRuns: {
    LinkElement: typeof LinkElement;
    Run: typeof Run;
};
/**
 * DTO container with a collection of runs.
 */
export declare class Runs extends LinkElement {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the collection of runs.
     */
    list: Array<Run>;
    constructor(init?: Partial<Runs>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
