/// import type { UIRouter } from '@uirouter/core'; import type { UIViewAddress } from '@uirouter/react'; import type { IInstance } from '../domain'; export interface IInstancesProps { instances: IInstance[]; highlight?: string; } export interface IInstancesState { detailsInstanceId: string; } export declare const Instances: (props: IInstancesProps) => JSX.Element; export interface IInstancesInternalProps extends IInstancesProps { router: UIRouter; uiview: UIViewAddress; }