import type { DsIcon } from '@bonniernews/dn-design-system-web/types-lib/ds-icon.d.ts'; export interface PictogramProps { variant?: 'brand' | 'business' | 'game'; iconName: DsIcon; size?: 'large' | 'small'; classNames?: string; attributes?: object; forcePx?: boolean; } /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/Pictogram](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/pictogram) * - Storybook: [Pictogram](https://designsystem.dn.se/?path=/docs/article-Pictogram--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/pictogram/pictogram.scss'` */ export declare const Pictogram: ({ variant, iconName, size, classNames, attributes, forcePx, }: PictogramProps) => import("preact").JSX.Element;