export declare class BankcardResult { private 'bank_name'?; private 'card_number'?; private 'issue_date'?; private 'expiry_date'?; type?: string; confidence?: object; private 'text_location'?; constructor(); withBankName(bankName: string): BankcardResult; set bankName(bankName: string | undefined); get bankName(): string | undefined; withCardNumber(cardNumber: string): BankcardResult; set cardNumber(cardNumber: string | undefined); get cardNumber(): string | undefined; withIssueDate(issueDate: string): BankcardResult; set issueDate(issueDate: string | undefined); get issueDate(): string | undefined; withExpiryDate(expiryDate: string): BankcardResult; set expiryDate(expiryDate: string | undefined); get expiryDate(): string | undefined; withType(type: string): BankcardResult; withConfidence(confidence: object): BankcardResult; withTextLocation(textLocation: object): BankcardResult; set textLocation(textLocation: object | undefined); get textLocation(): object | undefined; } //# sourceMappingURL=BankcardResult.d.ts.map