/// export interface IAppRefreshIconProps { appName: string; lastRefresh: number; refresh: () => void; refreshing: boolean; } export declare const AppRefresherIcon: ({ appName, lastRefresh, refresh, refreshing }: IAppRefreshIconProps) => JSX.Element;