export declare const PdfServicesAPI: { createScreenrecordingExport: ({ agentId, itemInstance }: { agentId: any; itemInstance: any; }) => Promise; getList: (params: { agentId: string; }) => Promise<{ items: any; next: any; }>; createCallExport: ({ callId, itemInstance }: { callId: any; itemInstance: any; }) => Promise; listCallExports: (params: { callId: string; }) => Promise<{ items: any; next: any; }>; delete: (id: string) => Promise; };