import type { SharedProps } from '@bonniernews/dn-design-system-web/assets/types/shared-props.ts'; export interface SpinnerProps extends SharedProps { variant: 'brand' | 'secondary' | 'primary' | 'onBrand' | 'onBusiness' | 'staticBlack' | 'staticWhite'; size?: 'large' | 'small' | 'xsmall'; forcePx?: boolean; } /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/spinner](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/spinner) * - Storybook: [Spinner](https://designsystem.dn.se/?path=/docs/basic-spinner--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/spinner/spinner.scss'` */ export declare const Spinner: ({ variant, size, forcePx, classNames, attributes }: SpinnerProps) => import("preact").JSX.Element; export default Spinner;