@hhgtech/hhg-components
Version:
Hello Health Group common components
12 lines (11 loc) • 455 B
TypeScript
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 };