import { BaseService } from '../infrastructure'; declare class UserGPGKeys extends BaseService { all({ userId }?: UserIdOptions): Promise; add(title: string, key: string, { userId }?: UserIdOptions): Promise; show(keyId: string, { userId }?: UserIdOptions): Promise; remove(keyId: string, { userId }?: UserIdOptions): Promise; } export default UserGPGKeys;