/** * @since 1.0.0 */ import * as AST from "./AST.js"; import * as Schema from "./Schema.js"; /** * @category formatting * @since 1.0.0 */ export declare const format: (schema: Schema.Schema) => string; /** * @category formatting * @since 1.0.0 */ export declare const formatAST: (ast: AST.AST, verbose?: boolean) => string; /** * @category formatting * @since 1.0.0 */ export declare const formatUnknown: (u: unknown) => string; //# sourceMappingURL=Format.d.ts.map