import { JSX } from 'react'; import { InputSpinnerProps } from './InputSpinner'; export interface HookedInputSpinnerProps extends Omit { /** * field name to match hook-form state */ name: string; } /** * `InputSpinner` component ready to be used with the `react-hook-form` context. * @see InputSpinner */ export declare function HookedInputSpinner({ name, ...props }: HookedInputSpinnerProps): JSX.Element; export declare namespace HookedInputSpinner { var displayName: string; }