import type { ToastContainerProps } from "../types";
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Type
 * [ToastContainerProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1994)
 * ## Props
 * @prop children
 * @prop position = "top-right"
 * @prop class: className
 * @prop ...restProps
 */
declare const ToastContainer: import("svelte").Component<ToastContainerProps, {}, "">;
type ToastContainer = ReturnType<typeof ToastContainer>;
export default ToastContainer;
