import { ReactElement } from 'react'; import { WrapperProps } from '@cezembre/fronts'; export type BoosterIconSize = 'small' | 'medium' | 'big'; export interface BoosterIconProps extends WrapperProps { leverage?: number; size?: BoosterIconSize; active?: boolean; } export declare function BoosterIcon({ leverage, size, active, to, onClick, type, href, target, }: BoosterIconProps): ReactElement;