import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
ariaLabel?: string;
visible?: boolean;
/** Customize the width of the modal here
*
* ```svelte
*
* ```
*/ class?: string;
};
events: {
opened: CustomEvent;
closed: CustomEvent;
} & {
[evt: string]: CustomEvent;
};
slots: {
default: {};
};
};
export type ModalProps = typeof __propDef.props;
export type ModalEvents = typeof __propDef.events;
export type ModalSlots = typeof __propDef.slots;
/**
* Shows a popup and fades the background.
*
* [See Docs](https://geist-ui-svelte.dev/components/modal) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new)
*/
export default class Modal extends SvelteComponent {
}
export {};