import type { PathSegment, NormalSegment } from '../types';
/**
 * Normalizes a single segment of a `PathArray` object.
 * eg. H/V -> L, T -> Q
 */
export declare function normalizeSegment(segment: PathSegment, params: any): NormalSegment;
