import { PromptTemplate } from '../../../template.js'; import { z } from 'zod'; import '../../../errors.js'; import '../../../internals/types.js'; import '../../../internals/helpers/guards.js'; import '../../../internals/serializable.js'; import 'ajv'; /** * Copyright 2025 © BeeAI a Series of LF Projects, LLC * SPDX-License-Identifier: Apache-2.0 */ declare const StreamlitAgentSystemPrompt: PromptTemplate, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>; interface StreamlitAgentTemplates { system: typeof StreamlitAgentSystemPrompt; } export { StreamlitAgentSystemPrompt, type StreamlitAgentTemplates };