/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes } from 'react'; export type SkeletonTableProps = { /** * The number of columns. * @default 3 */ readonly columns?: number; /** * The number of rows. * @default 3 */ readonly rows?: number; } & Readonly>; /** * A grid of cells that stands in for a table while it loads. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-feedback-skeleton--docs Skeleton docs at Amsterdam Design System} */ export declare const SkeletonTable: import("react").ForwardRefExoticComponent<{ /** * The number of columns. * @default 3 */ readonly columns?: number; /** * The number of rows. * @default 3 */ readonly rows?: number; } & Readonly> & import("react").RefAttributes>;