UNPKG

@hhgtech/hhg-components

Version:
12 lines (11 loc) 455 B
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 };