import type { BscType } from './BscType'; export declare class ObjectType implements BscType { typeText?: string; constructor(typeText?: string); isAssignableTo(targetType: BscType): boolean; isConvertibleTo(targetType: BscType): boolean; toString(): string; toTypeString(): string; clone(): ObjectType; }