import { type ExtrinsicConstraint } from "../constraint.js"; export type LengthConstraintSpec = number | { readonly min?: number; readonly max?: number; }; export declare function createLengthConstraint(lengthType: string, spec: LengthConstraintSpec): ExtrinsicConstraint;