import { OrcaPosition } from './types';
/**
 * Analyzes the position of the current price within the price range
 * Returns the relative position (0-1) and a description of where in the range we are
 * @param position The Orca position to analyze
 */
export declare function analyzePositionBalance(position: OrcaPosition): {
    relativePosition: number;
    description: string;
};
//# sourceMappingURL=analysis.d.ts.map