/** Indicates the card transaction's current status. */ export declare const TenderCardDetailsStatus: { readonly Authorized: "AUTHORIZED"; readonly Captured: "CAPTURED"; readonly Voided: "VOIDED"; readonly Failed: "FAILED"; }; export type TenderCardDetailsStatus = (typeof TenderCardDetailsStatus)[keyof typeof TenderCardDetailsStatus];