@hhgtech/hhg-components
Version:
Hello Health Group common components
11 lines (10 loc) • 438 B
TypeScript
/// <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>;