import type { VovkStrictConfig } from 'vovk/internal'; import type { ProjectInfo } from '../get-project-info/index.mjs'; export type Segment = { routeFilePath: string; segmentName: string; }; export declare function locateSegments({ dir, rootDir, config, log, }: { dir: string | null; rootDir?: string; config: VovkStrictConfig | null; log: ProjectInfo['log']; }): Promise;