import { useWatch, useFieldArray } from 'react-hook-form'; declare const Form: ((props: import("./type").FormProps) => JSX.Element) & { Item: (props: import("./type").FormItemProps) => JSX.Element; Subscribe: (props: import("./FormSubscribe").FormSubscribeProps) => JSX.Element; List: ({ children, ...props }: import("./FormList").FormListProps) => JSX.Element; useWatch: typeof useWatch; useFieldArray: typeof useFieldArray; }; export { Form }; export default Form; export type { FormProps, FormItemProps, FormInstance } from './type'; export type { FormSubscribeProps } from './FormSubscribe';