import type * as Schema from "./Schema.js"; import * as AST from "./SchemaAST.js"; /** * @category model * @since 3.10.0 */ export interface Pretty { (a: To): string; } /** * @category annotations * @since 3.10.0 */ export type PrettyAnnotation = readonly []> = (...pretties: { readonly [K in keyof TypeParameters]: Pretty; }) => Pretty; /** * @category prettify * @since 3.10.0 */ export declare const make: (schema: Schema.Schema) => (a: A) => string; /** * @since 3.10.0 */ export declare const match: AST.Match>; //# sourceMappingURL=Pretty.d.ts.map