UNPKG

@hhgtech/hhg-components

Version:
12 lines (11 loc) 414 B
/// <reference types="react" /> import { UseFormReturnType } from '@mantine/form'; import { IVFFormValue } from "./"; export type IVFFormContextType = { form: UseFormReturnType<IVFFormValue, (values: IVFFormValue) => IVFFormValue>; transferDateOptions: { label: string; value: string; }[]; }; export declare const IVFFormContext: import("react").Context<IVFFormContextType>;