import { BaseService } from '../infrastructure'; /** SSH key ID */ export declare type KeyId = string; declare class UserKeys extends BaseService { all({ userId }: UserIdOptions): Promise; /** Add SSH key for user */ create(title: string, key: KeyId, { userId }?: UserIdOptions): Promise; show(keyId: KeyId): Promise; remove(keyId: KeyId, { userId }?: UserIdOptions): Promise; } export default UserKeys;