@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 { UltrasoundFormValue } from "./";
export type UltrasoundFormContextType = {
form: UseFormReturnType<UltrasoundFormValue, (values: UltrasoundFormValue) => UltrasoundFormValue>;
};
export declare const UltrasoundFormContext: import("react").Context<UltrasoundFormContextType>;