import type { EntitlementResolution } from '../types.js'; type $$ComponentProps = { resolution?: EntitlementResolution | null; /** ISO date string (or null) for the current billing period end. */ periodEnd?: string | null; /** How to describe `periodEnd`: renews / ends / perpetual / unknown. */ periodDisposition?: 'perpetual' | 'renews' | 'ends' | 'unknown'; /** Stable locale override for the billing date. Defaults to the i18n locale. */ periodDateLocale?: string; /** Billing timezone used by both SSR and hydration. Defaults to UTC. */ periodTimeZone?: string; }; declare const SubscriptionSummary: import("svelte").Component<$$ComponentProps, {}, "">; type SubscriptionSummary = ReturnType; export default SubscriptionSummary; //# sourceMappingURL=SubscriptionSummary.svelte.d.ts.map