type Variant = 'note' | 'info' | 'success' | 'warning' | 'error' | 'tip'; interface Props { children?: import('svelte').Snippet; title?: import('svelte').Snippet; icon?: import('svelte').Snippet; actions?: import('svelte').Snippet; variant?: Variant; class?: string; style?: string; titleClass?: string; role?: 'note' | 'region' | 'group'; 'aria-label'?: string; 'aria-labelledby'?: string; 'aria-describedby'?: string; } declare const Callout: import("svelte").Component; type Callout = ReturnType; export default Callout;