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