import { Component } from "../../../types"; export interface StringSetupIntentProps extends Component { buttonText?: string; getManualSubmit?: (func: () => void) => void; hideBadge?: boolean; hideButtons?: boolean; onCancel?: () => void; publishableKey: string; returnUrl: string; showEdit?: boolean; showTerms?: boolean; } export declare const StripeSetupIntent: ({ publishableKey, hideLoader, onError, onLoadingChange, showEdit, hideButtons, hideBadge, getManualSubmit, ...props }: StringSetupIntentProps) => import("react/jsx-runtime").JSX.Element | null;