import { FC, ReactNode } from 'react'; import { Control } from 'react-hook-form'; interface ReactHookWrapperProps { inline?: boolean; control: Control; children: ReactNode; labelSize?: 'sm' | 'md' | 'lg'; } declare const ReactHookWrapper: FC; export default ReactHookWrapper;