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