/// import { SvgProps } from 'react-native-svg'; declare const PaymentTypeToComponent: { alipay: (props: SvgProps) => JSX.Element; amex: (props: SvgProps) => JSX.Element; /** Alias to american-express */ 'american-express': (props: SvgProps) => JSX.Element; /** CVV representation */ code: (props: SvgProps) => JSX.Element; cvv: (props: SvgProps) => JSX.Element; 'diners-club': (props: SvgProps) => JSX.Element; /** Alias to diners-club */ diners: (props: SvgProps) => JSX.Element; discover: (props: SvgProps) => JSX.Element; elo: (props: SvgProps) => JSX.Element; generic: (props: SvgProps) => JSX.Element; hiper: (props: SvgProps) => JSX.Element; hipercard: (props: SvgProps) => JSX.Element; jcb: (props: SvgProps) => JSX.Element; maestro: (props: SvgProps) => JSX.Element; mastercard: (props: SvgProps) => JSX.Element; /** Alias to mastercard */ master: (props: SvgProps) => JSX.Element; mir: (props: SvgProps) => JSX.Element; paypal: (props: SvgProps) => JSX.Element; unionpay: (props: SvgProps) => JSX.Element; visa: (props: SvgProps) => JSX.Element; }; declare type PaymentIconProps = { /** If invalid, it will default to generic. */ type: keyof typeof PaymentTypeToComponent; } & SvgProps; export declare function PaymentIcon(props: PaymentIconProps): JSX.Element; export {};