import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; description?: string; fixed?: boolean; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type AlertPmoProps = typeof __propDef.props; export declare type AlertPmoEvents = typeof __propDef.events; export declare type AlertPmoSlots = typeof __propDef.slots; export default class AlertPmo extends SvelteComponentTyped { } export {};