import type { IPathSegment } from '../../../../../types/segments/segment/path-segment.type.js';
import type { IStemAndExtTuple } from '../../../../../types/stem-and-ext-tuple.type.js';
/**
 * Returns the stem (file name without extension) and extension of 'basename'
 * INFO: 'basename' must not be a special segment (from root or relative)
 */
export declare function getStemAndExtEntryPathSegment(segment: IPathSegment): IStemAndExtTuple;
