import type { IChartApi, IPriceScaleApi, DeepPartial, PriceScaleOptions } from 'lightweight-charts'; import type { ReferencableActionResult, Reference } from './utils.js'; export interface PriceScaleParams { id: string; options?: DeepPartial; reference?: Reference; } export type PriceScaleActionResult = ReferencableActionResult; export declare function priceScale(target: IChartApi, params: PriceScaleParams): PriceScaleActionResult;