import type { inCountRange } from './useCount'; type ForcedCountConfig = Parameters[1]; interface UseCountExceedProps { countConfig: ForcedCountConfig; getTarget: () => Element | null; } export default function useCountExceed({ countConfig, getTarget }: UseCountExceedProps): (currentValue: string, isComposing: boolean) => string; export {};