import * as React from "react"; import { type DrawerProps } from "../Drawer.js"; export type DrawerHeaderProps = Omit, "title"> & Pick & { separator?: DrawerProps["headerSeparator"]; }; export declare const DrawerHeader: ({ title, icon, description, showCloseButton, separator, className, ...props }: DrawerHeaderProps) => React.JSX.Element | null;