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