import { RuntimeStrategiesResponse } from '@tradejs/types'; interface RuntimeDashboardQuery { userName: string; provider?: string | null; hours?: string | number | null; now?: number; projectRoot?: string; } declare const loadRuntimeDashboard: ({ userName, provider: requestedProvider, hours: requestedHours, now, projectRoot: requestedProjectRoot, }: RuntimeDashboardQuery) => Promise; export { type RuntimeDashboardQuery, loadRuntimeDashboard };