import { LayoutTab, isLayoutTabActive } from "../../../layouts/shared/index.js";
import { ComponentProps, ReactNode } from "react";

//#region src/components/sidebar/tabs/dropdown.d.ts
type SidebarTabWithProps = LayoutTab;
declare function SidebarTabsDropdown({
  options,
  placeholder,
  ...props
}: {
  placeholder?: ReactNode;
  options: LayoutTab[];
} & ComponentProps<'button'>): import("react").JSX.Element;
declare const isTabActive: typeof isLayoutTabActive;
//#endregion
export { SidebarTabWithProps, SidebarTabsDropdown, isTabActive };