import React from 'react';
import { BoxProps } from '@mantine/core';
export type UltrasoundFormValue = {
    dateOfUltrasound?: Date;
    ultrasoundCRL?: number;
    ultrasoundMSD?: number;
};
export declare const UltrasoundForm: ({}: BoxProps) => React.JSX.Element;
