import React from 'react'; import { AuthCodeProps } from 'react-auth-code-input'; import { Control, ControllerRenderProps } from 'react-hook-form'; export interface CodeInputProps extends Pick { className?: string; errorMsg?: string; control: Control; name: string; withCount?: boolean; label?: string; previewText?: string; render?: (field: ControllerRenderProps) => React.ReactElement; cy?: { wrapper?: string; input?: string; message?: string; }; refs: any; } declare const CodeInput: React.FC; export default CodeInput;