import { AnySchema, Schema } from "./core/types.mjs"; //#region src/to-standard.d.ts /** * Normalize an `AnySchema` (primitive name, BaseSchema, or schema definition) * to a Standard-Schema-compatible object. * * @param {AnySchema} schema Schema or schema-like value. * @returns {Schema} Standard-schema-shaped object. */ declare function toStandard(schema: AnySchema): Schema; /** * Convert any validation schema to a JSON Schema document. * * @param {AnySchema} schema Schema to convert. * @param {object} [options] Conversion options. * @param {string} [options.target="draft-2020-12"] Target JSON Schema draft. * @returns {Record} JSON Schema object. */ declare function getJsonSchema(schema: AnySchema, options?: { target?: string; }): Record; //#endregion export { getJsonSchema, toStandard }; //# sourceMappingURL=to-standard.d.mts.map