import * as Types from '../typebox'; export declare class ValueCreateUnknownTypeError extends Error { readonly schema: Types.TSchema; constructor(schema: Types.TSchema); } export declare class ValueCreateNeverTypeError extends Error { readonly schema: Types.TSchema; constructor(schema: Types.TSchema); } export declare namespace ValueCreate { /** Creates a value from the given schema. If the schema specifies a default value, then that value is returned. */ function Visit(schema: T, references: Types.TSchema[]): Types.Static; function Create(schema: T, references: [...R]): Types.Static; }