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