import type { IPathSegments } from '../../../../types/segments/path-segments.type.js';
export interface IIsRootPathSegmentsOptions {
    readonly rootRegExp: RegExp;
}
export declare function isRootPathSegments(segments: IPathSegments, { rootRegExp }: IIsRootPathSegmentsOptions): boolean;
