import type { ComponentProps, ReactNode } from 'react'; import type { Text } from '../../components/Text'; export type Hint = { type: 'tooltip'; text: string; } | { type: 'popover'; title: string; content: ReactNode; }; export type PlanType = { value: string; title: string; titleHeader?: ReactNode; sentiment?: ComponentProps['sentiment']; header: { description?: ReactNode; price: string; quotas?: string; priceDescription?: string; cta?: ReactNode; separator?: ReactNode; }; outOfStock?: boolean; disabled?: boolean; data: Record; }; export type Feature = { key: T; text: string; description?: string; spaceAfter?: boolean; hint?: Hint; } | { group: string; hint?: Hint; }; //# sourceMappingURL=types.d.ts.map