import * as SchemaIssue from "effect/SchemaIssue"; /** * Format a schema validation issue into human-readable lines with dot-notation * paths. * * Each line has the form `"path.to.field: message"` for issues with a path, or * just `"message"` for root-level issues. The result is capped at `maxIssues` * lines (default 5). * * @experimental This API is unstable and may change without notice. */ export declare const formatSchemaIssuesToLines: (issue: SchemaIssue.Issue, maxIssues?: number) => ReadonlyArray; //# sourceMappingURL=format-issues.d.ts.map