import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: Record; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type AlertProps = typeof __propDef.props; export type AlertEvents = typeof __propDef.events; export type AlertSlots = typeof __propDef.slots; export default class Alert extends SvelteComponentTyped { } export {};