import type { DrawerProps } from ".."; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [DrawerProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L680) * ## Props * @prop children * @prop open = $bindable(false) * @prop hidden = $bindable() * @prop modal * @prop offset * @prop width * @prop dismissable * @prop placement = "left" * @prop class: className * @prop transitionParams * @prop transition = fly * @prop outsideclose * @prop activateClickOutside * @prop ...restProps */ declare const Drawer: import("svelte").Component; type Drawer = ReturnType; export default Drawer;