import React from 'react';
interface EmptyRowViewProps {
    colSpan?: number;
    height?: string;
    text?: string;
}
declare const EmptyRowView: React.FC<EmptyRowViewProps>;
export default EmptyRowView;
