import type { IPathSegments } from '../../../../types/segments/path-segments.type.js';
import { type IConvertUncheckedPathSegmentsIntoPathSegments } from './convert-unchecked-path-segments-into-path-segments.js';
export interface IConvertStringPathToPathSegmentsOptions extends IConvertUncheckedPathSegmentsIntoPathSegments {
}
/**
 * Converts a string path to some `IPathSegments`.
 */
export declare function convertStringPathToPathSegments(path: string, options: IConvertStringPathToPathSegmentsOptions): IPathSegments;
