import { type PressableProps, type ViewStyle } from 'react-native';
import { PaymentButtonColor, type PaymentButtonEdges, type PaymentButtonFundingSource, type PaymentButtonLabel, type PaymentButtonSize } from './types';
export interface PaymentButtonProps extends PressableProps {
    fundingSource: PaymentButtonFundingSource;
    color: PaymentButtonColor;
    edges: PaymentButtonEdges | number;
    label: PaymentButtonLabel;
    size: PaymentButtonSize;
    style?: ViewStyle;
}
export declare const PaymentButton: ({ fundingSource, color: backgroundColor, edges, label, size, ...props }: PaymentButtonProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=PaymentButton.d.ts.map