import { PaymentButtonColor, PaymentButtonFundingSource, PaymentButtonSize } from './types';
type LogoType = 'credit' | 'paypal' | 'paypal_monogram';
type LogoVariant = 'blue' | 'color' | 'monochrome';
interface LogoInfo {
    type: LogoType;
    variant: LogoVariant;
    uri: number;
    width: number;
    height: number;
}
export declare const getLogoInfo: (fundingSource: PaymentButtonFundingSource, size: PaymentButtonSize, backgroundColor: PaymentButtonColor) => LogoInfo;
export {};
//# sourceMappingURL=logo.d.ts.map