import { BaseService } from '../infrastructure'; import { RequestOptions } from '../infrastructure/RequestHelper'; export declare type HookId = string | number; declare class SystemHooks extends BaseService { add(url: string, options: RequestOptions): Promise; all(options: RequestOptions): Promise; edit(hookId: HookId, url: string, options: RequestOptions): Promise; remove(projectId: ProjectId, hookId: HookId): Promise; } export default SystemHooks;