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