export type CalloutVariant = 'note' | 'tip' | 'warning' | 'danger'; import type { Component } from 'svelte'; import type { Snippet } from 'svelte'; type $$ComponentProps = { /** Visual intent. Default: `note`. */ variant?: CalloutVariant; /** Optional heading; defaults to the capitalized variant. */ title?: string; children: Snippet; }; declare const Callout: Component<$$ComponentProps, {}, "">; type Callout = ReturnType; export default Callout;