import React from 'react';
import type { VisibleColumnDescriptor } from './interfaces';
export interface EmptyTableProps {
    descriptors: VisibleColumnDescriptor[];
    isLoading?: boolean;
    emptyCellHeight?: number;
    EmptyContent?: React.ComponentType<{
        locale?: any;
    }>;
    locale?: any;
}
export declare function EmptyHtmlTable({ descriptors, isLoading, emptyCellHeight, EmptyContent, locale, }: EmptyTableProps): JSX.Element;
