export interface InvoicingOnboardingFooterProps { /** * Whether enabling is actually permitted. Authoritative — it also covers the * onboarding step, which the two flags below do not describe. */ canEnable: boolean; /** Complete POST in flight — renders the Enable button in its loading state. */ isEnabling: boolean; /** Every QuickBooks account mapping has been chosen. */ isQboConfigured: boolean; /** Stripe is connected and accepting charges. */ isStripePaymentsReady: boolean; onEnableClick: () => void; } declare const InvoicingOnboardingFooter: ({ canEnable, isEnabling, isQboConfigured, isStripePaymentsReady, onEnableClick, }: InvoicingOnboardingFooterProps) => import("react/jsx-runtime").JSX.Element; export default InvoicingOnboardingFooter;