import type { SharedProps } from '@bonniernews/dn-design-system-web/assets/types/shared-props.ts'; export interface BadgeProps extends SharedProps { figure?: number; forcePx?: boolean; } /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/badge](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/badge) * - Storybook: [Badge](https://designsystem.dn.se/?path=/docs/basic-badge--docs) * * The component will not include styling by itself. Make sure to include the right styles for the component. See example below: * `@use '@bonniernews/dn-design-system-web/components/badge/badge.scss'` */ export declare const Badge: ({ figure, forcePx, classNames, attributes }: BadgeProps) => import("preact").JSX.Element;