import type { SharedProps } from '@bonniernews/dn-design-system-web/assets/types/shared-props.ts'; import type { DsIcon } from '@bonniernews/dn-design-system-web/types-lib/ds-icon.d.ts'; import { ButtonStandardProps } from '@bonniernews/dn-design-system-web/components/button/button-types.ts'; export interface EmptyStateProps extends SharedProps { /** Icon name to use in the pictogram */ iconName?: DsIcon; /** Title */ title?: string; /** Body text */ body?: string; /** Object with text, href (optional), classNames (optional) and attributes (optional) */ brandButton?: ButtonStandardProps; /** Object with text, href (optional), classNames (optional) and attributes (optional) */ primaryButton?: ButtonStandardProps; /** Fixed pixel value is used for typography to prevent scaling based on html font-size */ forcePx?: boolean; } /** * - GitHub: [BonnierNews/dn-design-system/web/src/commponents/empty-state](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/empty-state) * - Storybook: [EmptyState](https://designsystem.dn.se/?path=/docs/basic-emptystate--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/empty-state/empty-state.scss'` */ export declare const EmptyState: ({ iconName, title, body, brandButton, primaryButton, classNames, attributes, forcePx, }: EmptyStateProps) => import("preact").JSX.Element;