import React from 'react'; import { type ControlLogicProps, type ControlLogicHook, type InputProps } from '../typings'; declare const useControlLogic: (InputComponent: React.ComponentType, { name, label, initialValue, type, help, className, prefix, suffix, narrow, large, inlineLabel, inline, noBottomGutter, disabled, ...otherProps }: ControlLogicProps) => ControlLogicHook; export default useControlLogic;