import type { ScopedComponentType } from 'jamis-core';
import type { FormControlProps } from '../types';
/**
 * 用来对 controlRenderer 进行一些处理的逻辑, 目前只对 validate 函数进行的 hook 的注册绑定
 */
export declare const useSetControlRef: <T extends FormControlProps>(props: T) => {
    setControlRef: (controlRenderer: ScopedComponentType<T>) => void;
};
