import type { SharedProps } from '@bonniernews/dn-design-system-web/assets/types/shared-props.ts'; export interface ImageCaptionProps extends SharedProps { /** Ex "Detta är en bildtext" */ caption?: string; /** Ex "Paul Hansen" */ author?: string; /** Type of image. Ex "Foto" or "Illustration" */ imageType?: string; /** Fixed pixel value is used for typography to prevent scaling based on html font-size */ forcePx?: boolean; } /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/image-caption](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/image-caption) * - Storybook: [ImageCaption](https://designsystem.dn.se/?path=/docs/article-image-caption--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/image-caption/image-caption.scss'` */ export declare const ImageCaption: ({ caption, author, imageType, classNames, attributes, forcePx }: ImageCaptionProps) => import("preact").JSX.Element;