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