import type { LocalizedEndRoute } from "./LocalizedEndRoute"; import type { LocalizedRoute, SegmentRoute } from "./interfaces"; import type { LocaleType, SegmentRoutePath } from "./types"; export declare class LocalizedSegmentRoute implements SegmentRoute, LocalizedRoute { localizedPaths: Map; nestedRoutes: LocalizedRoute[]; defaultRoute: LocalizedEndRoute | undefined; constructor(localizedPaths: Map); freeze(): void; getPath(locale?: Locales): SegmentRoutePath; isSegment(): true; isLocalized(): true; toJSON(): unknown[]; toString(): string; } //# sourceMappingURL=LocalizedSegmentRoute.d.ts.map