/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes } from 'react'; export type SkeletonHeadingProps = { /** * The number of lines the heading spans. * @default 1 */ readonly lines?: number; } & Readonly>; /** * Lines that stand in for a heading while it loads. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-feedback-skeleton--docs Skeleton docs at Amsterdam Design System} */ export declare const SkeletonHeading: import("react").ForwardRefExoticComponent<{ /** * The number of lines the heading spans. * @default 1 */ readonly lines?: number; } & Readonly> & import("react").RefAttributes>;