interface Props { type?: 'error' | 'warning' | 'success' | 'info'; message: string; onClose?: () => void; autoClose?: number; closable?: boolean; class?: string; } declare const Alert: import("svelte").Component; type Alert = ReturnType; export default Alert;