import type { IUncheckedPathSegments } from '../../../../types/segments/unchecked-path-segments.type.js';
export interface IConvertStringPathToUncheckedPathSegmentsOptions {
    readonly rootRegExp: RegExp;
}
/**
 * Converts a string path to an `IUncheckedPathSegments`.
 */
export declare function convertStringPathToUncheckedPathSegments(path: string, { rootRegExp }: IConvertStringPathToUncheckedPathSegmentsOptions): IUncheckedPathSegments;
