import { Content } from '../base/Content'; import { LogisticsSubType } from '../enums/LogisticsSubType'; export declare class PrintCvsDocument extends Content { protected requestPath: string; protected allPayLogisticsIDs: string[]; protected cvsPaymentNos: string[]; protected cvsValidationNos: string[]; setLogisticsSubType(subType: LogisticsSubType): this; setAllPayLogisticsID(id: string): this; setAllPayLogisticsIDs(ids: string[]): this; setCVSPaymentNo(no: string): this; setCVSPaymentNos(nos: string[]): this; setCVSValidationNo(no: string): this; setCVSValidationNos(nos: string[]): this; validate(): void; useUnimartC2C(): this; useFamiC2C(): this; useHilifeC2C(): this; useOkmartC2C(): this; forUnimart(paymentNo: string, validationNo: string): this; }