export declare class InvoiceVerificationRequestBody { code?: string; private 'number'?; private 'issue_date'?; private 'check_code'?; private 'subtotal_amount'?; constructor(code?: string, modelNumber?: string, issueDate?: string); withCode(code: string): InvoiceVerificationRequestBody; withModelNumber(modelNumber: string): InvoiceVerificationRequestBody; set modelNumber(modelNumber: string | undefined); get modelNumber(): string | undefined; withIssueDate(issueDate: string): InvoiceVerificationRequestBody; set issueDate(issueDate: string | undefined); get issueDate(): string | undefined; withCheckCode(checkCode: string): InvoiceVerificationRequestBody; set checkCode(checkCode: string | undefined); get checkCode(): string | undefined; withSubtotalAmount(subtotalAmount: string): InvoiceVerificationRequestBody; set subtotalAmount(subtotalAmount: string | undefined); get subtotalAmount(): string | undefined; } //# sourceMappingURL=InvoiceVerificationRequestBody.d.ts.map