import { Component, PropsOf, QRL, Signal, ClassList } from '@builder.io/qwik'; import { DrawerPosition } from './drawer-types'; import type { IconProps } from 'flowbite-qwik-icons'; export type DrawerTheme = { header?: ClassList; leftRightWidth?: ClassList; }; export type DrawerProps = PropsOf<'div'> & { 'bind:open': Signal; title: string; titleIcon?: Component; position?: DrawerPosition; backdrop?: boolean; preventBodyScroll?: boolean; onClose$?: QRL<() => void>; theme?: DrawerTheme; }; export declare const Drawer: Component;