import { HTMLAttributes } from 'react';
export interface EmptyStateDescriptionProps extends HTMLAttributes<HTMLHeadingElement> {
    children: string;
}
export declare const EmptyStateDescription: import('react').ForwardRefExoticComponent<EmptyStateDescriptionProps & import('react').RefAttributes<HTMLDivElement>>;
