/** * Centralized UI messages to ensure consistency across CLI and MCP interfaces. * This acts as the Single Source of Truth for user-facing strings. */ export declare const UIMessages: { /** * Usage hint for running a photon tool */ photonUsage: (name: string) => string; /** * Discovery hint for finding tools in a photon */ photonDiscovery: (name: string) => string; /** * Success message header for photon installation */ photonInstalled: (name: string) => string; /** * Success message header for photon import from clipboard */ photonImportedClipboard: (name: string) => string; /** * Success message header for photon import from file */ photonImportedFile: (name: string) => string; /** * Success message header for photon download */ photonDownloaded: (name: string) => string; }; //# sourceMappingURL=ui-messages.d.ts.map