import type { Generic } from 'adopted-style-sheets';
import type { WatchNumberOptions } from '../utils';
export type MaxLengthPropType = number;
export type PropMaxLength = {
    maxLength: MaxLengthPropType;
};
export declare const validateMaxLength: (component: Generic.Element.Component, value?: MaxLengthPropType, options?: WatchNumberOptions) => void;
