import type { IPathSegments } from '../../../../types/segments/path-segments.type.js';
import { type IConvertStringPathToPathSegmentsOptions } from '../convert/convert-string-path-to-path-segments.js';
export interface IGetProcessPathSegmentsOptions extends IConvertStringPathToPathSegmentsOptions {
}
/**
 * Returns the `IPathSegments` of the current process.
 */
export declare function getProcessPathSegments(options: IGetProcessPathSegmentsOptions): IPathSegments;
