import { IArticle, ICustomer, IPaymentRequest, ServiceParameter } from '../../../Models'; export interface IPay extends IPaymentRequest { billing: ICustomer; shipping?: ICustomer; articles: Partial[]; } export declare class Pay extends ServiceParameter { set billing(billing: ICustomer); set shipping(shipping: ICustomer); set articles(articles: IArticle[]); protected getGroups(): { [key: Capitalize]: Capitalize; }; protected getCountable(): Capitalize[]; }