import type { SomeSchema } from './types'; export declare const schemaToString: (schema: SomeSchema) => string; export declare const typeToPrint: (str: string) => string; export declare const objectToPrint: (str: string) => string; export declare const quote: (str: string) => string; export declare const unionToPrint: (arr: readonly string[]) => string; declare global { interface Array { includes(searchElement: unknown, fromIndex?: number): searchElement is T; } interface ReadonlyArray { includes(searchElement: unknown, fromIndex?: number): searchElement is T; } } //# sourceMappingURL=stringify.d.ts.map