import { Client } from 'soap'; import { ProposalLineItem, ProposalLineItemMakegoodInfo, ProposalLineItemPage } from './proposalLineItem.type'; import { ProposalLineItemServiceOperations } from './proposalLineItemService.interface'; import { ProposalLineItemAction } from './proposalLineItem.action'; import { Statement, UpdateResult } from '../../../common/types'; export declare class ProposalLineItemService implements ProposalLineItemServiceOperations { private _client; constructor(client: Client); createMakegoods(makegoodInfos: ProposalLineItemMakegoodInfo[]): Promise; createProposalLineItems(proposalLineItems: ProposalLineItem[]): Promise; getProposalLineItemsByStatement(filterStatement: Statement): Promise; performProposalLineItemAction(proposalLineItemAction: ProposalLineItemAction, filterStatement: Statement): Promise; updateProposalLineItems(proposalLineItems: ProposalLineItem[]): Promise; } //# sourceMappingURL=proposalLineItem.service.d.ts.map