/** * Create a new cloud context. */ export declare function createContext(name: string, token: string): Promise; /** * Set the active context. */ export declare function useContext(name: string): void; /** * Delete a context. */ export declare function deleteContext(name: string): Promise; /** * List all contexts. */ export declare function listContexts(): { name: string; active: boolean; }[]; /** * Get the active context name. */ export declare function getActiveContext(): string | null; /** * Resolve the cloud API token. * Priority: --token flag > HETZNER_CLOUD_TOKEN env > active context */ export declare function resolveToken(flagToken?: string): Promise;