import { type IconBrand } from '../../context/PaymentSourceContext'; import { type JSX } from 'react'; import type { ChildrenFunction } from '../../typings/index'; interface CustomComponent extends Omit { brand: IconBrand; } interface Props extends Omit { children?: ChildrenFunction; label?: string; } export declare function PaymentSourceBrandName({ children, label, ...props }: Props): JSX.Element; export default PaymentSourceBrandName;