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