import type { HybridObject } from './HybridObject'; /** * Get a constructor function for the given `HybridObject` {@linkcode T}. * @param name The name of the `HybridObject` under which it was registered at. * @returns An instance of {@linkcode T} * @example * ```ts * export const HybridImage = getHybridObjectConstructor('Image') * * const image1 = new HybridImage() * const image2 = new HybridImage() * image1 instanceof HybridImage // --> true * ``` */ export declare function getHybridObjectConstructor(name: string): { new (): T; }; //# sourceMappingURL=Constructor.d.ts.map