import { ColoredTextWithBGProps } from '../colored-text-with-bg'; import { RadioProps } from '../@forms/radio'; export interface BillingOptionProps { label: string; badgeLabel?: string; badgeColorObj?: ColoredTextWithBGProps['colorObj']; radioProps?: Omit; checked: RadioProps['checked']; onClick?: () => void; }