import * as React from 'react'; export interface IconProps extends Omit, 'size'> { /** Changes the color of the icon. */ color?: string; } export interface EmptyStateIconProps extends IconProps { /** Additional classes added to the empty state icon */ className?: string; /** Icon component to be rendered. Can also be a spinner component */ icon: React.ComponentType; } export declare const EmptyStateIcon: React.FunctionComponent; //# sourceMappingURL=EmptyStateIcon.d.ts.map