import type { ProviderService } from "../service-registry.js"; import { type ThemeName } from "../../../packages/toolcraft-design/dist/index.js"; export interface RenderServiceMenuOptions { themeName?: ThemeName; } export declare function formatServiceLabel(service: ProviderService, themeName?: ThemeName): string; export declare function renderServiceMenu(services: ProviderService[], options?: RenderServiceMenuOptions): string[];