import type { GitlabClient } from "./client.js"; import type { Deployment, Environment } from "./types.js"; export declare function listDeployments(client: GitlabClient, projectId: string | number, query?: Record): Promise; export declare function listEnvironments(client: GitlabClient, projectId: string | number): Promise;