@hhgtech/hhg-components
Version:
Hello Health Group common components
11 lines (10 loc) • 507 B
TypeScript
/// <reference types="react" />
import { UseFormReturnType } from '@mantine/form';
import { BabyGrowthFormField } from "../../../interfaces/types";
import { ButtonProps } from "../../../mantine";
export type BabyGrowthFormContextType = {
form: UseFormReturnType<BabyGrowthFormField, (values: BabyGrowthFormField) => BabyGrowthFormField>;
currentUrl?: string;
submitProps?: ButtonProps;
};
export declare const BabyGrowthFormContext: import("react").Context<BabyGrowthFormContextType>;