import type { Component } from 'svelte';
import type { AlertProps } from '../../types/index.js';
declare const Alert: Component<AlertProps, {}, "alertStatus">;
type Alert = ReturnType<typeof Alert>;
export default Alert;
