import { PrefectKind, SchemaValue } from '../../schemas/types/schemaValues'; export declare class InvalidSchemaValueTransformation extends Error { constructor(from: PrefectKind, to: PrefectKind); } export declare function isInvalidSchemaValueTransformationError(value: unknown): value is InvalidSchemaValueTransformation; export declare function mapSchemaValue(value: SchemaValue, to: PrefectKind): SchemaValue;