UNPKG

@hhgtech/hhg-components

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