import type { FunctionalComponent } from 'vue';
type SwalPopupProps = {
message: string;
class?: string;
};
type Events = {
sendMessage(message: string): void;
};
declare const SwalPopComponent: FunctionalComponent<SwalPopupProps, Events>;
export default SwalPopComponent;