import { HTMLAttributes, ReactNode } from 'react';
export interface EmptyStateContainerProps extends HTMLAttributes<HTMLDivElement> {
    children: ReactNode;
}
export declare const EmptyStateContainer: import('react').ForwardRefExoticComponent<EmptyStateContainerProps & import('react').RefAttributes<HTMLDivElement>>;
