/** * Default English translations for the AI Agent React library. * Users can override these by providing their own translations in the config. */ export declare const defaultTranslations: { readonly panelTitle: ""; readonly newChat: "New chat"; readonly followUp: "Follow up..."; readonly sendMessage: "Send message"; readonly stopStreaming: "Stop streaming"; readonly typeMessageToSend: "Type a message to send"; readonly attachFiles: "Attach files"; readonly attachSelectionToContext: "Attach selected text to context"; readonly attachments: "Attachments"; readonly chats: "Chats"; readonly multiUserChats: "Shared chats"; readonly noMultiUserChats: "No shared chats yet."; readonly noChatsYet: "No chats yet."; readonly untitledChat: "Untitled chat"; readonly deleteChat: "Delete chat"; readonly showChatHistory: "Show chat history"; readonly hideChatHistory: "Hide chat history"; readonly close: "Close"; readonly fetchingChats: "Fetching chats…"; readonly fetchingChatError: "Fetching chats failed"; readonly helloThere: "Hello there!"; readonly howCanIHelpYou: "How can I help you today?"; readonly agentSettingsLoading: "Loading agent settings…"; readonly agentSettingsError: "Failed to load agent settings."; readonly agentSettingsNoConfigurableTools: "No configurable tools available."; readonly agentSettingsNoToolsForAgent: "No tools configured."; readonly agentSettingsTooltip: "Configure agent tools"; readonly formProposalFailed: "Failed to propose form values"; readonly formProposalPreparing: "Preparing form fill proposal…"; readonly formProposalNone: "No form fields proposed."; readonly formProposalHeaderPrefix: "Proposed values for"; readonly formProposalApplied: "Applied"; readonly formProposalRejected: "Rejected"; readonly formProposalApplyAll: "Apply all"; readonly formProposalShowAll: "Show all"; readonly formProposalShowLess: "Show less"; readonly formProposalApplyFieldPrefix: "Apply"; readonly imageGenerationFailed: "Image generation failed"; readonly imageGenerationGenerating: "Generating image…"; readonly imageGenerationNone: "No images were generated."; readonly imageGenerationOpen: "Open full size"; readonly imageGenerationDownload: "Download image"; }; export type Translations = typeof defaultTranslations; /** * Schema for validating translations config */ export declare const translationsSchema: { readonly panelTitle: StringConstructor; readonly newChat: StringConstructor; readonly followUp: StringConstructor; readonly sendMessage: StringConstructor; readonly stopStreaming: StringConstructor; readonly typeMessageToSend: StringConstructor; readonly attachFiles: StringConstructor; readonly attachSelectionToContext: StringConstructor; readonly attachments: StringConstructor; readonly chats: StringConstructor; readonly multiUserChats: StringConstructor; readonly noMultiUserChats: StringConstructor; readonly noChatsYet: StringConstructor; readonly untitledChat: StringConstructor; readonly deleteChat: StringConstructor; readonly showChatHistory: StringConstructor; readonly hideChatHistory: StringConstructor; readonly fetchingChats: StringConstructor; readonly fetchingChatError: StringConstructor; readonly helloThere: StringConstructor; readonly howCanIHelpYou: StringConstructor; readonly close: StringConstructor; readonly agentSettingsLoading: StringConstructor; readonly agentSettingsError: StringConstructor; readonly agentSettingsNoConfigurableTools: StringConstructor; readonly agentSettingsNoToolsForAgent: StringConstructor; readonly agentSettingsTooltip: StringConstructor; readonly formProposalFailed: StringConstructor; readonly formProposalPreparing: StringConstructor; readonly formProposalNone: StringConstructor; readonly formProposalHeaderPrefix: StringConstructor; readonly formProposalApplied: StringConstructor; readonly formProposalRejected: StringConstructor; readonly formProposalApplyAll: StringConstructor; readonly formProposalShowAll: StringConstructor; readonly formProposalShowLess: StringConstructor; readonly formProposalApplyFieldPrefix: StringConstructor; }; //# sourceMappingURL=translations.d.ts.map