import { InheritanceType } from './InheritanceType';
declare interface InheritanceAnnotation {
    strategy: InheritanceType;
}
declare interface EntityInheritanceAnnotation {
    Inheritance?: InheritanceAnnotation;
}
declare function Inheritance(annotation?: InheritanceAnnotation): ClassDecorator;
export { InheritanceAnnotation, EntityInheritanceAnnotation, Inheritance };
