import React from 'react'; import type { Application } from './application.model'; import type { IOverridableProps } from '../overrideRegistry/Overridable'; export interface IApplicationIconProps extends IOverridableProps { app: Application; } export declare class ApplicationIcon extends React.Component { render(): JSX.Element; }