import { AxiosInstance } from 'axios'; import { CardResponse } from '../interfaces'; /** * Get list of all available cards. * * @param {AxiosInstance} apiClient */ declare const getCards: (apiClient: AxiosInstance) => Promise; export { getCards };