export function parseDirective(statement: any, context: any, type: any): void;
declare namespace _default {
    export { Cardinality };
    export { Identification };
    export { parseDirective };
    export function getConfig(): import("../../config.type").ErDiagramConfig | undefined;
    export { addEntity };
    export { addAttributes };
    export { getEntities };
    export { addRelationship };
    export { getRelationships };
    export { clear };
    export { setAccTitle };
    export { getAccTitle };
    export { setAccDescription };
    export { getAccDescription };
}
export default _default;
declare namespace Cardinality {
    const ZERO_OR_ONE: string;
    const ZERO_OR_MORE: string;
    const ONE_OR_MORE: string;
    const ONLY_ONE: string;
}
declare namespace Identification {
    const NON_IDENTIFYING: string;
    const IDENTIFYING: string;
}
declare function addEntity(name: any): any;
declare function addAttributes(entityName: any, attribs: any): void;
declare function getEntities(): {};
/**
 * Add a relationship
 *
 * @param entA The first entity in the relationship
 * @param rolA The role played by the first entity in relation to the second
 * @param entB The second entity in the relationship
 * @param rSpec The details of the relationship between the two entities
 */
declare function addRelationship(entA: any, rolA: any, entB: any, rSpec: any): void;
declare function getRelationships(): any[];
declare function clear(): void;
import { setAccTitle } from "../../commonDb";
import { getAccTitle } from "../../commonDb";
import { setAccDescription } from "../../commonDb";
import { getAccDescription } from "../../commonDb";
