/** * @docunator * @title ZenDrawerTitle * @description A title component for the ZenDrawer * @category Drawer Components Props */ type ZenDrawerTitle = { title?: string; }; /** * @docunator * @title ZenDrawerTitle * @description A title component for the ZenDrawer * @category Drawer Components * @param {string} title - The title text to display * @author Danilo Ramírez Mattey * @version 1.0.0 * @see ZenDrawer * @see ZenDrawerItem */ export default function ZenDrawerTitle({ title }: ZenDrawerTitle): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ZenDrawerTitle.d.ts.map