export declare type ObjectType<T = any> = (new (...args: any[]) => T);
export declare function getObjectTypeName<T = any>(objectType: ObjectType<T> | Function | any): string;
