import { Client } from 'soap'; import { CreativeWrapperServiceOperations } from './creativeWrapperService.interface'; import { CreativeWrapper, CreativeWrapperPage } from './creativeWrapper.type'; import { CreativeWrapperAction } from './creativeWrapper.action'; import { Statement, UpdateResult } from '../../../common/types'; export declare class CreativeWrapperService implements CreativeWrapperServiceOperations { private _client; constructor(client: Client); createCreativeWrappers(creativeWrappers: CreativeWrapper[]): Promise; getCreativeWrappersByStatement(filterStatement: Statement): Promise; performCreativeWrapperAction(creativeWrapperAction: CreativeWrapperAction, filterStatement: Statement): Promise; updateCreativeWrappers(creativeWrappers: CreativeWrapper[]): Promise; } //# sourceMappingURL=creativeWrapper.service.d.ts.map