@hhgtech/hhg-components
Version:
Hello Health Group common components
8 lines (7 loc) • 328 B
TypeScript
/// <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>;