import { ReactElement, RefObject } from 'react'; import { LidoComponentProps } from '../utils'; export type { Theme } from '../theme/index.js'; export declare enum BadgeVariant { positive = 0, negative = 1, warning = 2, gray = 3, gradient = 4 } export declare type BadgeVariants = keyof typeof BadgeVariant; export declare type BadgeProps = LidoComponentProps<'div', { wrapperRef?: RefObject; variant?: BadgeVariants; icon?: ReactElement; }>; //# sourceMappingURL=types.d.ts.map