import { Repository } from 'typeorm'; import { CrudService } from '../core/crud/crud.service'; import { Currency } from './currency.entity'; export declare class CurrencyService extends CrudService { private readonly currencyRepository; constructor(currencyRepository: Repository); }