UNPKG

@hhgtech/hhg-components

Version:
11 lines (10 loc) 438 B
/// <reference types="react" /> import { UseFormReturnType } from '@mantine/form'; import { ButtonProps } from "../../../../../mantine"; import { PWGFormValue } from "./"; export type PWGFormContextType = { form: UseFormReturnType<PWGFormValue, (values: PWGFormValue) => PWGFormValue>; linkTool: string; submitProps?: ButtonProps; }; export declare const PWGFormContext: import("react").Context<PWGFormContextType>;