export abstract class AcCsvParser { public abstract paymentProviderName: string; public abstract getTransactions(): Promise; }