import { UIElementProps } from '../types';
export interface CashAppPayElementProps extends UIElementProps {
    /**
     * Indicates that the payment must be stored (Ex: in case there is no checkbox but merchant wants to store it)
     */
    storePaymentMethod?: boolean;
    /**
     * Enables storing the payment method using the Checkbox
     */
    enableStoreDetails?: boolean;
    /**
     * Callback triggered before starting the CashAppPay flow. Use case: Validate customer data, check product availability
     */
    onClick?(actions: {
        resolve: () => void;
        reject: () => void;
    }): void;
    /**
     * A reference to your system (for example, a cart or checkout identifier). Maximum length 1024 characters.
     * https://developers.cash.app/docs/api/technical-documentation/sdks/pay-kit/technical-reference#parameters-3
     */
    referenceId?: string;
    /**
     * The destination for the customer after approving (or declining) in Cash App for mobile redirect flow.
     * https://developers.cash.app/docs/api/technical-documentation/sdks/pay-kit/technical-reference#customerrequest
     * @defaultValue window.location.ref
     */
    redirectURL?: string;
    /**
     * Button customization
     * https://developers.cash.app/docs/api/technical-documentation/sdks/pay-kit/use-cases#customize-the-cash-app-pay-button
     */
    button?: {
        shape?: 'semiround' | 'round';
        size?: 'medium' | 'small';
        theme?: 'dark' | 'light';
        width?: 'static' | 'full';
    };
    /**
     * CashAppPay configuration sent by the /paymentMethods response
     */
    configuration?: {
        clientId: string;
        scopeId: string;
    };
    /**
     * If payment is tokenized, then API will return its ID
     * @internal
     */
    storedPaymentMethodId?: string;
    /**
     * If payment is tokenized, then API will return this value
     * @internal
     */
    cashtag?: string;
}
export type CashAppPayElementData = {
    paymentMethod: {
        type: string;
        grantId?: string;
        storedPaymentMethodId?: string;
    };
    storePaymentMethod?: boolean;
};
export type CashAppPayEventData = {
    cashTag?: string;
    customerId?: string;
    grantId?: string;
    onFileGrantId?: string;
};
