import * as Joi from "joi"; import * as chalk from "chalk"; export * from "../utils"; export declare const labels: { error: string; expected: string; received: string; schema: string; }; export declare const colors: { expected: chalk.Chalk; received: chalk.Chalk; }; export declare const print: (message: string) => (() => string); export declare const stack: (lines: Array) => string; export declare const printObject: (object: unknown) => string; export declare const errorExplanation: (error: Joi.ValidationError) => string;