import React from 'react';
import { SiteType } from "../../../interfaces/types";
import { LOCALE } from "../../../interfaces/types/Locale";
export type BabyGrowthRecordProps = {
    measurementDate: Date;
    weight: number;
    height: number;
    head: number;
    onEdit: VoidFunction;
    birthday: Date;
    dateFormat?: string;
    locale?: LOCALE;
    siteType?: SiteType;
};
declare const BabyGrowthRecord: React.FC<BabyGrowthRecordProps>;
export { BabyGrowthRecord };
