UNPKG

@hhgtech/hhg-components

Version:
11 lines (10 loc) 507 B
/// <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>;