import ClassDeclaration = require('./classdeclaration');
/**
 * IdentifiedDeclaration
 *
 * @extends ClassDeclaration
 * @see See {@link ClassDeclaration}
 * @class
 * @memberof module:concerto-core
 * @abstract
 */
declare class IdentifiedDeclaration extends ClassDeclaration {
    /**
     * Create an IdentifiedDeclaration.
     * @param {ModelFile} modelFile the ModelFile for this class
     * @param {Object} ast - The AST created by the parser
     * @throws {IllegalModelException}
     */
    constructor(modelFile: any, ast: any);
}
export = IdentifiedDeclaration;
