import type { CSSProperties, FC } from 'react';
import type { ColumnType } from '../../types/index.js';
interface TablePlaceholderPropTypes {
    style: CSSProperties;
    columns: ColumnType[];
    rows: number;
    pleaseWaitText: string;
}
export declare const TablePlaceholder: FC<TablePlaceholderPropTypes>;
export {};
