import { BaseService, Sudo, BaseRequestOptions, PaginatedRequestOptions } from '../infrastructure'; export declare class DeployKeys extends BaseService { add(projectId: string | number, options?: Sudo): Promise; all({ projectId, ...options }: { projectId?: string | number; } & PaginatedRequestOptions): Promise; edit(projectId: string | number, keyId: string, options?: BaseRequestOptions): Promise; enable(projectId: string | number, keyId: string, options?: Sudo): Promise; remove(projectId: string | number, keyId: string, options?: Sudo): Promise; show(projectId: string | number, keyId: string, options?: Sudo): Promise; }