import { HttpService } from '@/common/modules/http/http.service';
import { PriceGateway } from './price.gateway';
export interface GoldPriceResponse {
    price: number;
    timestamp: string;
    currency: string;
    metal: string;
}
export declare class PricesService {
    protected readonly http: HttpService;
    protected readonly socket: PriceGateway;
    constructor(http: HttpService, socket: PriceGateway);
    getGoldPrice(): Promise<GoldPriceResponse>;
    handleCron(): void;
}
