import type { ComponentProps, FC } from "react"; import type { FlowbiteBoolean, ThemingProps } from "../../types"; export interface DrawerHeaderTheme { inner: { titleIcon: string; titleText: string; closeButton: string; closeIcon: string; titleCloseIcon: string; }; collapsed: FlowbiteBoolean; } export interface DrawerHeaderProps extends ComponentProps<"div">, ThemingProps { closeIcon?: FC>; title?: string; titleIcon?: FC>; } export declare const DrawerHeader: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;