import type { PaginatedResponse } from './index'; export interface PaymentMethod { businessId: string; cardType: string; created: string; createdByAccountId: string; expiryMonth: string; expiryYear: string; isDebit: boolean; isDefault: boolean; isExpired: boolean; lastFour: string; methodType: string; modified: string; organisationId: string; patientId: string; source: string; _id: string; } export declare type PaymentMethodResponse = PaginatedResponse;