import { gauge } from './gauge';
import { priceVolume } from './priceVolumePreset';
import { sparkline } from './sparkline';
export declare const PRESETS: {
    'price-volume': typeof priceVolume;
    gauge: typeof gauge;
    sparkline: typeof sparkline;
};
export declare const PRESET_DATA_PROCESSORS: Partial<Record<keyof typeof PRESETS, (data?: any[]) => {
    data?: any[];
    series?: {
        xKey: string;
        yKey: string;
    }[];
}>>;
