import React from 'react'; import { Theme } from '../../../styles'; export interface TablePlaceholderRowProps { colSpan: number; message?: string; } export declare function TablePlaceholderRow(props: TablePlaceholderRowProps): JSX.Element; export declare namespace TablePlaceholderRow { var defaultProps: Partial; } export declare const createStyles: (theme: Theme) => { cell: React.CSSProperties; };