import { type DataRecordValue, type SchemaField } from '@overture-stack/lectern-dictionary'; /** * Checks that a value matches the expected type for a given field, based on the value type specified in its field * definition. * * @param value Value to check * @param fieldDefinition Field definition that specifies the expected value type * @returns `true` if value matches the expected type; `false` otherwise. */ export declare const isValidValueType: (value: DataRecordValue, fieldDefinition: SchemaField) => boolean;