UNPKG

@hhgtech/hhg-components

Version:
8 lines (7 loc) 328 B
/// <reference types="react" /> import { UseFormReturnType } from '@mantine/form'; import { IUIFormValue } from "./"; export type IUIFormContextType = { form: UseFormReturnType<IUIFormValue, (values: IUIFormValue) => IUIFormValue>; }; export declare const IUIFormContext: import("react").Context<IUIFormContextType>;