import type { CommandPreviewItem } from '../../types/chat.js'; interface Props { commands: CommandPreviewItem[]; onApprove: () => void; onCancel: () => void; } declare const CommandPreview: import("svelte").Component; type CommandPreview = ReturnType; export default CommandPreview;