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