/** * `/dashboard ` module registry, help text, and fallback replies. * * The concrete handlers live in sibling files. `buildStubText` remains as a * defensive fallback for future modules or partial refactors. */ import { type Locale } from '../../i18n/index.js'; export type DashboardModule = 'overview' | 'sessions' | 'groups' | 'schedules' | 'settings'; export declare const DASHBOARD_MODULES: ReadonlyArray; /** Build the localised `not_implemented_yet` text for a given module. */ export declare function buildStubText(module: DashboardModule, locale: Locale): string; /** Build the localised help text. */ export declare function buildHelpText(locale: Locale, opts?: { unknownModule?: string; }): string; //# sourceMappingURL=stub.d.ts.map