import { type IconBrand } from '../../context/PaymentSourceContext'; import { type JSX } from 'react'; import type { ChildrenFunction } from '../../typings/index'; interface ChildrenProps extends Omit { brand: IconBrand; defaultSrc: string; url: string; } interface Props extends Omit { children?: ChildrenFunction; width?: number; height?: number; } export declare function PaymentSourceBrandIcon({ src, width, children, ...p }: Props): JSX.Element; export default PaymentSourceBrandIcon;