import * as AST from "./AST.js"; import type * as Schema from "./Schema.js"; /** * @category model * @since 0.67.0 */ export interface Pretty { (a: To): string; } /** * @category hooks * @since 0.67.0 */ export declare const PrettyHookId: unique symbol; /** * @category hooks * @since 0.67.0 */ export type PrettyHookId = typeof PrettyHookId; /** * @category annotations * @since 0.67.0 */ export declare const pretty: (handler: (...args: ReadonlyArray>) => Pretty) => (self: Schema.Schema) => Schema.Schema; /** * @category prettify * @since 0.67.0 */ export declare const make: (schema: Schema.Schema) => (a: A) => string; /** * @since 0.67.0 */ export declare const match: AST.Match>; //# sourceMappingURL=Pretty.d.ts.map