import { ClientAnalytics } from '@zeniai/client-analytics'; export interface InvoicingPromoPageProps { /** Accept POST in flight — renders the CTA in its loading state. */ isAccepting: boolean; /** Non-admin viewer — show the setup-pending text and hide the CTA. */ isReadOnlyUser: boolean; meetingUrl: string; analytics?: ClientAnalytics; onAcceptClick?: () => void; onBackClick?: () => void; onClickMenuIcon?: () => void; } declare const InvoicingPromoPage: ({ analytics, isAccepting, isReadOnlyUser, meetingUrl, onAcceptClick, onBackClick, onClickMenuIcon, }: InvoicingPromoPageProps) => import("react/jsx-runtime").JSX.Element; export default InvoicingPromoPage;