/// import { PackageInfo } from '../../data/packageInfo'; export interface AppInfoAction { label: string; color?: string; onClick?: (pkg: PackageInfo) => void; } export interface AppInfoSettingProps { info: PackageInfo; isService: boolean; customActions?: AppInfoAction[]; onUnInstall?: Function; onCheckIfDependent: Function; isDependent: boolean; onResync?: Function; onDisable?: Function; onRestart?: Function; onOn?: () => Promise; onOff?: () => Promise; } export declare const AppInfoSetting: (props: AppInfoSettingProps) => JSX.Element;