import React, { FC } from 'react'; import { MusicfetchBrand } from '../brands'; interface IconProps { direction?: 'up' | 'right' | 'down' | 'left'; color?: string; size?: number | string; opacity?: number; className?: string; style?: React.CSSProperties; testId?: string; svg: string; } export declare const BrandIcon: FC<{ brand: MusicfetchBrand; } & Omit>; export {};