/// <reference types="react" />
import { UseFormReturnType } from '@mantine/form';
import { ConceptionFormValue } from "./";
export type ConceptionFormContextType = {
    form: UseFormReturnType<ConceptionFormValue, (values: ConceptionFormValue) => ConceptionFormValue>;
};
export declare const ConceptionFormContext: import("react").Context<ConceptionFormContextType>;
