import type { Snippet } from 'svelte'; type CalloutTone = 'info' | 'success' | 'warning' | 'error' | 'neutral'; interface CalloutProps { tone?: CalloutTone; title?: string; class?: string; icon?: Snippet; children?: Snippet; actions?: Snippet; } declare const Callout: import("svelte").Component; type Callout = ReturnType; export default Callout;