import type { Snippet } from 'svelte';
interface Props {
    children: Snippet;
    outerClass?: string;
    innerClass?: string;
    contentClass?: string;
}
/**
 * [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
 * ## Props
 * @props: children: any;
 * @props:outerClass: any;
 * @props:innerClass: any;
 * @props:contentClass: any;
 */
declare const Popup: import("svelte").Component<Props, {}, "">;
type Popup = ReturnType<typeof Popup>;
export default Popup;
