import { HTMLAttributes } from "react"; import { ItemProps } from "./Item"; interface Props extends Partial { /** * The title of the group */ title: string; /** * If the group is expanded by default * @default false */ defaultExpanded?: boolean; } export declare function DrawerGroup({ children, defaultExpanded, title, ...props }: Props & HTMLAttributes): import("react/jsx-runtime").JSX.Element; export {};