import { DataContextBase, DataModelBase } from '@themost/common';
import { EntityConstructor } from './Entity';
declare function PreInit(): MethodDecorator;
declare interface PreInitEvent {
    context?: DataContextBase;
    entityClass?: EntityConstructor<unknown>;
    model?: DataModelBase;
}
export { PreInitEvent, PreInit };
