import { CatalogItem } from '../../interfaces';
declare type getItemPricesProps = {
    catalogItem: CatalogItem;
};
/**
 * Получаем цены для курса.
 * Они могут зависеть в том числе и от времени
 */
export declare const getItemPrices: ({ catalogItem }: getItemPricesProps) => {};
export {};
