import { AutoEncoder } from '@simonbackx/simple-encoding'; export declare class OrganizationPaymentMandateDetails extends AutoEncoder { consumerName?: string; consumerAccount?: string; consumerBic?: string; cardExpiryDate: string | null; cardLabel: string | null; } export declare class OrganizationPaymentMandate extends AutoEncoder { id: string; isDefault: boolean; method: 'directdebit' | 'creditcard' | 'paypal'; status: 'valid' | 'pending' | 'invalid'; details: OrganizationPaymentMandateDetails; /** * The signature date of the mandate in YYYY-MM-DD format. */ signatureDate: string | null; /** * The mandate’s date and time of creation, in ISO 8601 format. */ createdAt: Date; mandateReference: string | null; } //# sourceMappingURL=OrganizationPaymentMandate.d.ts.map