import { TypeSpec } from "./types"; export declare type Value = string | number | boolean | void; export declare const typesByField: Record; export declare const castValue: ( value: string | string[], field: string, fieldDef?: TypeSpec, ) => Value | Value[];