/**
 * Represents some Type of the Object.
 */
export declare type ObjectType<T> = {
    new (): T;
} | Function;
