import type { NotLocalizedEndRoute } from "./NotLocalizedEndRoute"; import type { NotLocalizedRoute, SegmentRoute } from "./interfaces"; import type { LocaleType, SegmentRoutePath } from "./types"; export declare class NotLocalizedSegmentRoute implements SegmentRoute, NotLocalizedRoute { path: SegmentRoutePath; nestedRoutes: NotLocalizedRoute[]; defaultRoute: NotLocalizedEndRoute | undefined; constructor(path: SegmentRoutePath); freeze(): void; getPath(): SegmentRoutePath; isSegment(): true; isLocalized(): false; toJSON(): unknown; toString(): string; } //# sourceMappingURL=NotLocalizedSegmentRoute.d.ts.map