
/**
 *
 * @param {string} id - Unique ID for the logo element.
 * @param {boolean} [light=false] - Light version.
 * @returns
 * SymbolLogo component
 * 
 * @example
 * ```
 * import { SymbolLogoSvg } from '@api3/logos';
 * 
 * const App = () => {
 * return <img src={SymbolLogoSvg("eth")} alt="Logo" />;
 * }
 * ```
 * 
 * @example
 * ```
 * import { SymbolLogoSvg } from '@api3/logos';
 * 
 * const App = () => {
 * return <img src={SymbolLogoSvg("eth")} alt="Logo" width="64" height="64" />;
 * }
 * ```
 * 
 */
declare function SymbolLogo(id: string, light?: boolean): string;
export default SymbolLogo;
