import React from 'react';
import { SiteType } from "../../../interfaces/types";
import { PregWeightInfo } from "../../../together/interfaces/types";
export type InputError = {
    weightBefore: string;
    weight: string;
    height: string;
};
export type Props = {
    info: PregWeightInfo;
    errorMessage?: InputError;
    onChange?: (o: PregWeightInfo) => void;
    isMobile?: boolean;
    siteType?: SiteType;
};
declare const PWGInputForm: ({ siteType, info, onChange, errorMessage, }: Props) => React.JSX.Element;
export { PWGInputForm };
