import type { DeferredJobsApiClient } from '../../api'; import type { PricingTable } from './types'; import type { TableId } from './types'; export type Client = ReturnType; export declare function createClient(api: DeferredJobsApiClient): { list: () => Promise; get: (tableId: TableId.STANDARD) => Promise; };