import type { APICommand } from '../index.js'; export interface Environment { active?: boolean; deletedAt?: number | null; id: string; name: string; protected?: boolean; type?: string; } export declare const getEnvironments: (command: APICommand) => Promise;