import { EntityContainerConfig } from '../types';
import { ODataSchemaElement } from './element';
import { ODataEntitySet } from './entity-set';
import { ODataSchema } from './schema';
import { ODataSingleton } from './singleton';
export declare class ODataEntityContainer extends ODataSchemaElement {
    entitySets: ODataEntitySet[];
    singletons: ODataSingleton[];
    constructor(config: EntityContainerConfig, schema: ODataSchema);
}
