import { SandboxGroupContext } from "../../api/sandboxGroupContext.js"; import { PortsAddOptionalParams, PortsRemoveOptionalParams, PortsUpdateOptionalParams } from "../../api/ports/options.js"; import { AddPortRequest, SandboxPort } from "../../models/models.js"; /** Interface representing a Ports operations. */ export interface PortsOperations { /** Add a port to a sandbox. */ add: (sandboxId: string, port: number, options?: PortsAddOptionalParams) => Promise; /** Remove a port from a sandbox. */ remove: (sandboxId: string, port: number, options?: PortsRemoveOptionalParams) => Promise; /** Replace all port mappings on a sandbox. */ update: (sandboxId: string, ports: Array, options?: PortsUpdateOptionalParams) => Promise; } export declare function _getPortsOperations(context: SandboxGroupContext): PortsOperations; //# sourceMappingURL=index.d.ts.map