import type { Condition, IconCondition } from '../../common/interface';
export declare const getIconPosition: (condition: IconCondition) => import("../../common/interface").IconPosition;
export declare const getIntervalScale: (minValue?: number, maxValue?: number) => (current: number) => {
    zeroScale: number;
    scale: number;
};
export declare const findFieldCondition: <T extends Condition<unknown>>(conditions: T[] | undefined, field: string) => T | undefined;
