import type { DataType, EntityType, PropertyType } from "@blockprotocol/type-system"; export declare const isDataType: (type: any) => type is DataType; export declare const isPropertyType: (type: any) => type is PropertyType; export declare const isEntityType: (type: any) => type is EntityType;