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