import { Effects } from '../Effects'; import { PackageId } from '../osBindings'; import { Watchable } from './Watchable'; export declare class GetContainerIp extends Watchable { readonly opts: { packageId?: PackageId; }; protected readonly label = "GetContainerIp"; constructor(effects: Effects, opts?: { packageId?: PackageId; }); protected fetch(callback?: () => void): Promise; }