import { type AlertProps } from "..";
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Type
 * [AlertProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L221)
 * ## Props
 * @prop children
 * @prop icon
 * @prop alertStatus = $bindable(true)
 * @prop closeIcon: CloseIcon
 * @prop color = "primary"
 * @prop rounded = true
 * @prop border
 * @prop class: className
 * @prop dismissable
 * @prop transition = fade
 * @prop params
 * @prop ...restProps
 */
declare const Alert: import("svelte").Component<AlertProps, {}, "alertStatus">;
type Alert = ReturnType<typeof Alert>;
export default Alert;
