UNPKG

@hhgtech/hhg-components

Version:
8 lines (7 loc) 377 B
/// <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>;