import React from 'react'; export interface TabListMenuType { open: boolean; onRequestClose: () => void; anchor: HTMLButtonElement | null; onSelectTab: (layoutId: string) => void; showActiveTab?: boolean; heading?: string; tabListMenuId: string; } export declare const TabListMenu: ({ open, onRequestClose, anchor, onSelectTab, showActiveTab, heading, tabListMenuId, }: TabListMenuType) => JSX.Element | null; export declare const useTabListMenu: () => { handleOpen: () => void; handleRequestClose: () => void; setRef: React.Dispatch>; open: boolean; anchor: HTMLButtonElement | null; tabCount: number; }; //# sourceMappingURL=TabListMenu.d.ts.map