import { Time } from 'lightweight-charts'; type GraphPrices = { time: Time; value?: number; }; type HandleMinMaxPriceProps = { tokenGraphPrices?: GraphPrices[]; }; export declare const buildTokenPrices: ({ tokenGraphPrices, }: HandleMinMaxPriceProps) => { prices: { time: Time; value: number; }[]; }; export {};