import { WellboreHeader } from '../types/WellboreHeader';
/**
 * Caluclate the segments top for a single well
 * @param dictionary dictionary of wellbore headers indexed by wellbore name
 * @param included array of wellbore headers that should be included
 * @param selected id of selected wellbore if applicable (will be processed first => sequence = 0)
 * @returns dictionary of segment tops in MD Msl indexed by wellbore id
 */
export declare function calculateWellSegments(dictionary: Record<string, WellboreHeader>, included: WellboreHeader[], selected?: string): Record<string, [number, number]>;
