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#L583)
 * ## Props
 * @prop children
 * @prop hidden = $bindable()
 * @prop closeDrawer = ()
 * @prop activateClickOutside = true
 * @prop position
 * @prop width
 * @prop backdrop = true
 * @prop backdropClass
 * @prop placement = "left"
 * @prop class: className
 * @prop transitionParams
 * @prop transitionType = fly
 * @prop bodyScrolling = false
 * @prop ...restProps
 */
declare const Drawer: import("svelte").Component<DrawerProps, {}, "hidden">;
type Drawer = ReturnType<typeof Drawer>;
export default Drawer;
