import { HTMLAttributes } from 'react';
export interface EmptyStateIconProps extends HTMLAttributes<HTMLDivElement> {
    children?: never;
}
export declare const EmptyStateIcon: import('react').ForwardRefExoticComponent<EmptyStateIconProps & import('react').RefAttributes<HTMLDivElement>>;
