import React from 'react';
import { SiteType } from "../../../../interfaces/types";
export type NewBabyProfileRadioProps = {
    isActive: boolean;
    onChange: (id: string) => void;
    value: string;
    onInputChange: (v: string) => void;
    siteType?: SiteType;
};
declare const NewBabyProfileRadio: ({ isActive, onChange, value, onInputChange, siteType, }: NewBabyProfileRadioProps) => React.JSX.Element;
export { NewBabyProfileRadio };
