UNPKG

@hhgtech/hhg-components

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