import { type TSchema, SchemaOptions } from '../schema/index.mjs'; import { type TConstructor } from '../constructor/index.mjs'; import { type TNever } from '../never/index.mjs'; export type TInstanceType ? InstanceType : TNever> = Result; /** `[JavaScript]` Extracts the InstanceType from the given Constructor type */ export declare function InstanceType(schema: Type, options?: SchemaOptions): TInstanceType;