import { IResponse, IContext } from '../../types'; import { ISshKey } from '..'; export interface IUpdateSshKeyApiResponse { ssh_key: ISshKey; } export interface IUpdateSshKeyApiRequest { name: string; ssh_key_id: string | number; } export type UpdateSshKeyResponse = IResponse; export declare const updateSshKey: ({ httpClient, }: IContext) => ({ name, ssh_key_id, }: IUpdateSshKeyApiRequest) => Promise>;