import React from "react"; import type { StripeProduct } from "../SystemSettingsPage.types"; interface SubscriptionDetailsDialogProps { open: boolean; product: StripeProduct; onClose: () => void; onChangePlan: (product: StripeProduct) => void; /** When true, the dialog cannot be closed by the user (no close button, no backdrop/esc close) */ locked?: boolean; /** Optional override for the main action label */ actionLabel?: string; } declare const SubscriptionDetailsDialog: React.FC; export default SubscriptionDetailsDialog;