import type { Field } from "@frictionless-ts/metadata"; import type { CellMaxLengthError } from "@frictionless-ts/metadata"; import type { CellMapping } from "../Mapping.ts"; export declare function checkCellMaxLength(field: Field, mapping: CellMapping): { isErrorExpr: import("nodejs-polars").Expr; errorTemplate: CellMaxLengthError; } | undefined;