/// <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>;
