import { ComponentChild } from 'preact'; import type { SharedProps } from '@bonniernews/dn-design-system-web/assets/types/shared-props.ts'; export interface MaskProps extends SharedProps { image: ComponentChild; variant: 'quiz-mask'; } /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/mask](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/mask) * - Storybook: [Mask](https://designsystem.dn.se/?path=/docs/section-subcomponents-mask--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/mask/mask.scss'` */ export declare const Mask: ({ image, variant, classNames, attributes }: MaskProps) => import("preact").JSX.Element;