import { BadgeType, BadgeSize, BadgeShape, BadgePosition, BadgeAnimation } from './types'; interface StyledBadgeProps { $type: BadgeType; $size: BadgeSize; $shape: BadgeShape; $position: BadgePosition; $color?: string; $backgroundColor?: string; $offsetX: number; $offsetY: number; $isInteractive: boolean; $animation: BadgeAnimation; $animationDuration: number; $zIndex: number; } interface StyledBadgeWrapperProps { $disablePortal: boolean; } export declare const StyledBadgeWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, StyledBadgeWrapperProps>> & string; export declare const StyledBadgeContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLSpanElement>, never>> & string; export declare const StyledBadge: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, StyledBadgeProps>> & string; export {};