import { SubscriptionEstimationData } from '@zeniai/client-epic-state'; /** * Component & its Props */ export interface Props { subscriptionEstimateData: SubscriptionEstimationData; style?: React.CSSProperties; } export default function PlanUpdateSummarySection({ subscriptionEstimateData, style, }: Props): import("react/jsx-runtime").JSX.Element; /** * Form Data Type */ export interface PlanUpdateSummarySectionFormData { couponsEstimate: string; planEstimate: string; } type FormDataKeys = keyof PlanUpdateSummarySectionFormData; declare const uniqueName: (sectionId: string, key: FormDataKeys) => `${string}.couponsEstimate` | `${string}.planEstimate`; export type FormDataKeyUniqueNames = ReturnType; export {};