import type { ControlOutterProps, FormControlProps } from '../types';
export declare const useWrapControl: <T extends FormControlProps>(props: ControlOutterProps) => T & {
    onChange: (value: any) => void;
};
