/** * Side-effect-free agent-admin shells. * * Exposes the agent-admin composites (`AgentAdminPanel` / `AgentAdminTabs` / * `AgentSettingsShell`) and the registry types they take WITHOUT the schedule * component `ModuleUIRegistry` auto-registration that the `./svelte` barrel runs * on import. Consumers that only render the admin shells should import from here * — it preserves the side-effect-free semantics of the former * `@happyvertical/smrt-svelte/admin` subpath (#1589). */ import type { ComponentProps } from 'svelte'; import AgentAdminPanel from './components/AgentAdminPanel.svelte'; import AgentAdminTabs from './components/AgentAdminTabs.svelte'; import AgentSettingsForm from './components/AgentSettingsForm.svelte'; import AgentSettingsShell from './components/AgentSettingsShell.svelte'; export { AgentAdminPanel, AgentAdminTabs, AgentSettingsForm, AgentSettingsShell, }; export type AgentAdminPanelProps = ComponentProps; export type AgentAdminTabsProps = ComponentProps; export type AgentSettingsShellProps = ComponentProps; export type AgentSettingsFormProps = ComponentProps; export type { AdminPanelBaseProps, AgentSettingField, AgentSettingFieldType, AgentSettingOption, AgentSettingsSchema, AgentUIComponentRegistry, AgentUISlot, AgentUISlots, } from '../ui.js'; //# sourceMappingURL=admin.d.ts.map