import { WithTestID } from "src/utils/types"; import { SVGCardLogoProps } from "./types"; export declare const IOPaymentCardLogos: { readonly payPal: ({ preserveAspectRatio }: SVGCardLogoProps) => import("react/jsx-runtime").JSX.Element; readonly bancomatPay: ({ preserveAspectRatio }: SVGCardLogoProps) => import("react/jsx-runtime").JSX.Element; }; export type IOLogoPaymentCardType = keyof typeof IOPaymentCardLogos; type IOPaymentLogos = WithTestID<{ name: IOLogoPaymentCardType; accessibilityLabel: string; align: "start" | "center" | "end"; width?: "100%" | number; height?: number; debugMode?: boolean; }>; declare const LogoPaymentCard: ({ name, width, height, align, accessibilityLabel, testID, debugMode, ...props }: IOPaymentLogos) => import("react/jsx-runtime").JSX.Element; export default LogoPaymentCard; //# sourceMappingURL=LogoPaymentCard.d.ts.map