import type { SharedProps } from '@bonniernews/dn-design-system-web/assets/types/shared-props.ts'; export interface BlockedContentProps extends SharedProps { title: string; body: string; link: string; forcePx?: boolean; elementAttributes?: { [key: string]: string; }; } /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/blocked-content](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/blocked-content) * - Storybook: [BlockedContent](https://designsystem.dn.se/?path=/docs/article-blockedcontent--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/blocked-content/blocked-content.scss'` */ export declare const BlockedContent: ({ title, body, link, forcePx, classNames, attributes, elementAttributes, }: BlockedContentProps) => import("preact").JSX.Element; export default BlockedContent;