import { type DashboardPluginComponentProps, type PanelHydrateFunction } from '@deephaven/dashboard'; export type ConsolePluginProps = DashboardPluginComponentProps & { hydrateConsole?: PanelHydrateFunction; notebooksUrl: string; }; export interface FileMetadata { id: string | null; itemName: string; } export declare function ConsolePlugin(props: Partial): JSX.Element | null; export default ConsolePlugin; //# sourceMappingURL=ConsolePlugin.d.ts.map