import * as React from "react"; export declare const logos: { DMONLYICON: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; DMVERTICAL: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; DMDEFAULT: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; DMDEFAULTFULLCOLOR: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; ATC: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; DAI: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; BTC: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; BITCOIN: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; USDT: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; POLYGON: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; USDC: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; XRP: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; USD: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; BNB: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; ITC: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; OGN: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; ETH: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; ETHEREUM: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; INCOME: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; BINANCE: (width?: string | undefined, height?: string | undefined, color?: string | undefined) => JSX.Element; }; export interface LogoProps { type?: string; color?: string; width?: string; height?: string; } declare const Logo: { ({ type, color, width, height }: LogoProps): React.ReactElement; displayName: string; }; export default Logo;