import { TSchema } from '@sidewinder/type'; export declare namespace ValueConvert { /** Converts any type mismatched values to their target type if a reasonable conversion is possible. */ function Convert(schema: TSchema, references: TSchema[], value: unknown): unknown; /** Converts any type mismatched values to their target type if a reasonable conversion is possible. */ function Convert(schema: TSchema, value: unknown): unknown; }