import { ControlProps } from '@jsonforms/core'; declare function useCustomControl({ data: value, errors, handleChange, path, schema }: ControlProps): { isFocused: boolean; isDirty: boolean; isValid: boolean; onFocus: () => void; onBlur: (e: any) => void; onChange: (e: any) => void; isRequired: boolean; }; export default useCustomControl; //# sourceMappingURL=useCustomControl.d.ts.map