import { ComponentChild } from "preact"; import { CSSProperties } from "preact/compat"; type DrawerProps = { show?: boolean; onHide?: () => void; children?: ComponentChild; style?: CSSProperties; className?: string; width?: number; anchor?: "left" | "right"; onDragOverMask?: () => void; }; declare const Drawer: ({ show, onHide, children, style, className, width, anchor, onDragOverMask }: DrawerProps) => import("preact").JSX.Element; export default Drawer;