import type { SharedProps } from '@bonniernews/dn-design-system-web/assets/types/shared-props.ts'; interface DirektCircleProps extends SharedProps { /** Hex code or supported color name */ circleColor?: string; isAnimated?: boolean; } /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/direkt-circle](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/direkt-circle) * - Storybook: [DirektCircle](https://designsystem.dn.se/?path=/docs/section-subcomponents-direktcircle--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/direkt-circle/direkt-circle.scss'` */ export declare const DirektCircle: ({ circleColor, classNames, attributes, isAnimated, }: DirektCircleProps) => import("preact").JSX.Element; export {};