import { AriaAttributes, ReactNode, default as React } from 'react'; type Flag = { icon: { icon: string; }; alt: string; }; export interface PaymentMethodsProps { /** * ID to find this component in testing tools (e.g.: cypress, * testing-library, and jest). */ testId?: string; /** * Title of the payment methods section (e.g.: "Payment methods", * "Accepted Cards"). */ title?: ReactNode; /** * Defines a string value that labels the current element when * title is not used. */ 'aria-label'?: AriaAttributes['aria-label']; /** * List of flags to be displayed in the payment * methods section (e.g.:, visa, mastercard, etc). */ flagList: Flag[]; } declare const PaymentMethods: React.ForwardRefExoticComponent>; export default PaymentMethods; //# sourceMappingURL=PaymentMethods.d.ts.map