import type React from 'react'; import type { AppViewProps } from './app-view-contract.js'; import type { PanelId } from './ui-contracts.js'; export interface AppViewPickersProps { host: AppViewProps['host']; runtime: AppViewProps['runtime']; mainColumnWidth: number; pickerMaxRows: number; routedToSidebar: (id: PanelId) => boolean; panelPositions: Record; } export declare function AppViewPickers({ host, runtime, mainColumnWidth, pickerMaxRows, routedToSidebar, panelPositions, }: AppViewPickersProps): React.ReactElement; //# sourceMappingURL=app-view-pickers.d.ts.map