import * as React from 'react'; import type { ViewerSidebarTab } from './sidebarTabs'; import type { Organization } from '../../../types/dbTypes'; interface ViewerSidebarShellProps { /** Tabs this viewer contributes, in display order. */ tabs: ViewerSidebarTab[]; organization?: Organization; } /** * Chrome shared by every viewer sidebar: the building header, the tab strip, and * the panel for whichever tab is active. A viewer supplies its tab list and nothing * else — the selected-tab wiring used to be copy-pasted into each of them. */ export declare function ViewerSidebarShell({ tabs, organization }: ViewerSidebarShellProps): React.JSX.Element; export {}; //# sourceMappingURL=Shell.d.ts.map