import { FC } from 'react'; import type { WithControllerProps } from './types'; declare function withController(Component: FC, { shouldDebounce: factoryShouldDebounce, debounceTime }?: { shouldDebounce?: boolean | undefined; debounceTime?: number | undefined; }): ({ name, control, helperText, shouldDebounce: runtimeShouldDebounce, ...props }: WithControllerProps) => import("react/jsx-runtime").JSX.Element; export default withController; //# sourceMappingURL=index.d.ts.map