import type { CellConstError, CellEnumError, CellExclusiveMaximumError, CellExclusiveMinimumError, CellJsonError, CellMaxItemsError, CellMaximumError, CellMaxLengthError, CellMinItemsError, CellMinimumError, CellMinLengthError, CellMissingError, CellMultipleOfError, CellPatternError, CellTypeError, CellUniqueError, ColumnMissingError, ColumnTypeError, DataError, FairspecError, ForeignKeyError, IntegrityError, MetadataError, ResourceMissingError, ResourceTypeError, RowPrimaryKeyError, RowUniqueKeyError, TextualError } from "@fairspec/library"; export declare function renderError(error: FairspecError): string; export declare function renderCellTypeError(error: CellTypeError): string; export declare function renderCellMissingError(error: CellMissingError): string; export declare function renderCellMinimumError(error: CellMinimumError): string; export declare function renderCellMaximumError(error: CellMaximumError): string; export declare function renderCellExclusiveMinimumError(error: CellExclusiveMinimumError): string; export declare function renderCellExclusiveMaximumError(error: CellExclusiveMaximumError): string; export declare function renderCellMultipleOfError(error: CellMultipleOfError): string; export declare function renderCellMinLengthError(error: CellMinLengthError): string; export declare function renderCellMaxLengthError(error: CellMaxLengthError): string; export declare function renderCellPatternError(error: CellPatternError): string; export declare function renderCellUniqueError(error: CellUniqueError): string; export declare function renderCellConstError(error: CellConstError): string; export declare function renderCellEnumError(error: CellEnumError): string; export declare function renderCellJsonError(error: CellJsonError): string; export declare function renderCellMinItemsError(error: CellMinItemsError): string; export declare function renderCellMaxItemsError(error: CellMaxItemsError): string; export declare function renderColumnMissingError(error: ColumnMissingError): string; export declare function renderColumnTypeError(error: ColumnTypeError): string; export declare function renderDataError(error: DataError): string; export declare function renderTextualError(error: TextualError): string; export declare function renderIntegrityError(error: IntegrityError): string; export declare function renderForeignKeyError(error: ForeignKeyError): string; export declare function renderMetadataError(error: MetadataError): string; export declare function renderResourceMissingError(error: ResourceMissingError): string; export declare function renderResourceTypeError(error: ResourceTypeError): string; export declare function renderRowPrimaryKeyError(error: RowPrimaryKeyError): string; export declare function renderRowUniqueKeyError(error: RowUniqueKeyError): string;