import type { MetadataPropertyInfoType } from "../../contracts/utils/metadata/MetadataPropertyInfoType"; export declare class MetadataPropertyInfoTypeType implements MetadataPropertyInfoType { private type; constructor(type: "unknown" | "boolean" | "number" | "string" | "array" | "object" | "null" | "undefined"); matchType(value: unknown): boolean; toString(): string; }