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