import * as React from 'react'; import type { ViewerKey } from '../../types/dbTypes'; import type { LucideProps } from 'lucide-react'; export interface PluginNavItem { /** The `viewer` key this item switches to. */ id: ViewerKey; title: string; icon: React.ComponentType; } /** * The `data.pages` contributions as nav items. They sit in Datasets beside Buildings, so a * contributed page reads as part of the platform. */ export declare function usePluginDataPages(): PluginNavItem[]; //# sourceMappingURL=usePluginDataPages.d.ts.map