import * as fromRoot from '../+shared'; import { MappingExportJobCreationDto } from './model/MappingExportJobCreationDto'; import { Client } from '../Client'; export declare class MappingExportApi { private readonly client; private requestMappingUrl; constructor(client: Client); /** * Create mapping export job. * * @requires DEVICE_READ and SEMANTIC_READ access permissions */ create(creationDto: MappingExportJobCreationDto): Promise; /** * Create mapping export job. * * @requires DeviceManagement.Devices.ExportMappings access permissions */ exportJob(exportDto: { name: string; description: string; channelId: string; locale: string; dataFormat: string; deviceId: number; pointIds: number[]; }): Promise; } //# sourceMappingURL=MappingExportApi.d.ts.map