import type { DeferredJobsApiClient } from '../../api'; import type { NotificationSubscription } from '../../types'; import type { UpdateRequest } from './types'; export type Client = ReturnType; export declare function createClient(api: DeferredJobsApiClient): { list: () => Promise; update: (payload: UpdateRequest) => Promise; };