/// import type { IArtifact, IArtifactKindConfig, IExpectedArtifact } from '../../domain'; export interface IArtifactIconProps { expectedArtifact?: IExpectedArtifact; artifact?: IArtifact; kind?: IArtifactKindConfig; type?: string; width: string | number; height: string | number; } export declare const ArtifactIcon: (props: IArtifactIconProps) => JSX.Element;