import type { SharedProps } from '@bonniernews/dn-design-system-web/assets/types/shared-props.ts'; import { LinkBoxItemProps } from './link-box-item'; interface LinkBoxProps extends SharedProps { /** Array with link objects. Ex. [ { label: 'Sverige runt', text: '42 avsnitt', link: '#', mediaHtml: "", layout: 'quiz', attributes: { "data-test": "list-item-test-data" } } ] */ linkBoxItems: LinkBoxItemProps[]; /** Heading of the link box */ vignetteText?: string; /** Target URL for the header */ vignetteTargetUrl?: string; } /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/link-box](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/link-box) * - Storybook: [LinkBox](https://designsystem.dn.se/?path=/docs/section-linkbox--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/link-box/link-box.scss'` */ export declare const LinkBox: ({ linkBoxItems, vignetteText, vignetteTargetUrl, classNames, attributes, }: LinkBoxProps) => import("preact").JSX.Element; export {};