export declare type Theme = 'icon' | 'default' | 'visa' | 'mastercard' | 'amex' | 'diners'; export declare type Color = 'black' | 'white' | 'blue'; export declare type Size = 'small' | 'regular'; export interface LogoProps { /** * The logo theme */ theme: Theme; /** * The color of the Moralis logo */ color?: Color; /** * The size of the payment logo */ size?: Size; }