import React from "react"; export interface INoDataProps { className?: string; noDataLabel: string; notFoundLabel?: string; hasNoMatchingData?: boolean; } export declare const NoData: React.FC;