import type { Issue } from "./issue"; export type FormatErrorOptions = { readonly maxNestedErrors?: number; }; export declare function formatIssue(issue: Issue, options?: FormatErrorOptions): string;