import { type BaseRecord, type HttpError } from "@refinedev/core"; import type { UseFormReturnType } from "@refinedev/react-hook-form"; import type { DetailedHTMLProps, FormHTMLAttributes, PropsWithChildren } from "react"; import { type FieldValues } from "react-hook-form"; type NativeFormProps = Omit, HTMLFormElement>, "onSubmit">; type FormProps = PropsWithChildren & UseFormReturnType & { formProps?: NativeFormProps; }; export declare const Form: { ({ formProps, saveButtonProps, ...props }: FormProps): import("react/jsx-runtime").JSX.Element; Field: (props: import("react-hook-form").UseControllerProps & { label?: string | undefined; description?: string | undefined; className?: string | undefined; children: import("react").ReactElement<{ field: import("react-hook-form").ControllerRenderProps; }, string | import("react").JSXElementConstructor>; }) => import("react/jsx-runtime").JSX.Element; Combobox: import("react").ForwardRefExoticComponent & { label?: string | undefined; shouldFilter?: boolean | undefined; filter?: ((value: string, search: string) => number) | undefined; value?: string | undefined; onValueChange?: ((value: string) => void) | undefined; loop?: boolean | undefined; } & import("react").RefAttributes, "ref">, "onChange|onValueChange|value"> & { queryResult: import("@tanstack/query-core").QueryObserverResult, any>; defaultValueQueryResult: import("@tanstack/query-core").QueryObserverResult>; onSearch: (value: string) => void; options: import("@refinedev/core").BaseOption[]; } & import("@refinedev/core").UseLoadingOvertimeReturnType & { placeholder?: string | undefined; emptyMessage?: string | undefined; onChange?: ((value: string | number) => void) | undefined; value?: string | number | BaseRecord | undefined; }, "ref"> & import("react").RefAttributes>; Select: import("react").ForwardRefExoticComponent void) | undefined; options?: import("@refinedev/core").BaseOption[] | undefined; } & import("react").RefAttributes>; }; export {}; //# sourceMappingURL=index.d.ts.map