import type { TLineItemExpanded } from '@blocklet/payment-types'; interface TrialInfoProps { trial: { active: boolean; days: number; afterTrialPrice: string | null; afterTrialInterval: string | null; }; mode: string; items: TLineItemExpanded[]; } export default function TrialInfo({ trial, mode, items }: TrialInfoProps): import("react").JSX.Element | null; export {};