import React, { CSSProperties, ReactNode } from 'react'; import { TBaseProps } from '../../types'; import { Position, Shape } from './enums'; export declare type Props = TBaseProps & Partial<{ children: ReactNode; color: string; hasMargin: boolean; image: string; imagePosition: Position; imageShape: Shape; position: Position | string; shape: Shape; style: CSSProperties; text: string | number | ReactNode; }>; export declare const Badge: React.MemoExoticComponent<(props: Props) => JSX.Element>;