CurrenciesModule: ModuleMutations<Currency> & { count: ((query: CurrencyQuery) => Promise<number>); currencyExists: ((params: { currencyId: string }) => Promise<boolean>); findCurrencies: ((params: CurrencyQuery & { limit?: number; offset?: number; sort?: SortOption[] }) => Promise<Currency[]>); findCurrency: ((params: { currencyId?: string; isoCode?: string }) => Promise<Currency>) }