export declare function EntityRepository(entity: (new () => T) | (() => void)): (target: any) => void; export declare function DbSetEntity(entity: (new () => T) | (() => void)): (target: any, propertykey: string) => void; export declare function getEntitySchema(target: any): any; export declare function getEntitySetKeys(target: any): any; export declare function getEntitySet(target: any, propertykey: string): any;