import type { ReactNode } from 'react';
import type { ForcedCountConfig } from './useCount';
interface UseCountDisplayProps {
    countConfig: ForcedCountConfig;
    value: string;
    maxLength?: number;
}
interface CountDisplayInfo {
    mergedMax?: number;
    isOutOfRange: boolean;
    dataCount?: ReactNode;
}
export default function useCountDisplay({ countConfig, value, maxLength, }: UseCountDisplayProps): CountDisplayInfo;
export {};
