import React from 'react'; import { TableCell } from '../listTable/ListTable'; import { CommonProps } from '../../utilities'; declare type Props = { /** * 列数を指定します。デフォルトは5です。 */ columnCount?: number; /** * 行数を指定します。デフォルトは3です。 */ rowCount?: number; /** * 各行に表示するコンポーネント等を指定します。 * デフォルトでは、1列目に `SkeletonParagraph` の `"medium"`サイズが、2列目以降には `SkeletonParagraph` の `"small"` サイズが表示されます。 */ rowCells?: Array; } & CommonProps; /** * ローディング中のテーブルを表現するために使います * This component provides a skeleton image of ListTable. */ export declare const SkeletonListTable: React.FC; /** * @deprecated SkeletonListTable を使ってください。 Use SkeletonListTable instead. */ export declare const SkeltonListTable: React.FC; export {};