export interface EmptyStateDataDisplayProps {
    /** The main text to display. */
    label: string;
    /** The sub-text to display. */
    paragraph: string;
}
/** Represents a component to indicate an empty state. */
export declare function EmptyStateDataDisplay({ label, paragraph }: EmptyStateDataDisplayProps): import("react/jsx-runtime").JSX.Element;
