import { OTPKeyboardHookProps } from "../types/OTPKeyboard"; export default function useTextManager({ maxLength, onPress, onSubmitPress }: OTPKeyboardHookProps): { onKeyPress: (text: string | undefined) => void; onBackSpacePress: () => void; onSubmit: () => void; }; //# sourceMappingURL=useTextManager.d.ts.map