export type AlertVariant = 'info' | 'warning' | 'danger' | 'success'; import type { Snippet } from 'svelte'; interface Props { small?: boolean; variant?: AlertVariant; title?: Snippet; children: Snippet; } declare const Alert: import("svelte").Component; type Alert = ReturnType; export default Alert;