import { SchemaLike, SchemaMap, ErrorDetails } from './types'; export declare const isSchemaMap: (obj: SchemaLike) => obj is SchemaMap; export declare const schemaLikeToSchema: (obj: SchemaLike) => import("./AnySchema").AnySchema; export declare const formatPath: (path: (string | number)[]) => string | number; export declare const formatErrors: (errors: ErrorDetails[]) => string;