import React, { ImgHTMLAttributes } from 'react';
declare const getLogo: (spaceId?: string | null, payerId?: string | null, clientId?: string) => Promise;
interface PayerLogoProps extends Omit, 'src'> {
/** Client ID to use to fetch the payer's logo. */
clientId: string;
/** Required if `payerId` is not provided. The payer spaces ID for the payer for which you want a logo. */
spaceId?: string;
/** Required if `spaceId` is not provided. The payer ID for the payer for which you want a logo. */
payerId?: string;
}
declare const PayerLogo: ({ spaceId, payerId, clientId, ...props }: PayerLogoProps) => React.JSX.Element | null;
export { type PayerLogoProps, PayerLogo as default, getLogo };