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#L2000) * ## Props * @prop children * @prop position = "top-right" * @prop class: className * @prop ...restProps */ declare const ToastContainer: import("svelte").Component; type ToastContainer = ReturnType; export default ToastContainer;