import { DashboardResource } from '@perses-dev/core'; import { StoreApi } from 'zustand'; import { DashboardStoreState } from '../context'; /** * Helper to get a test dashboard resource. */ export declare function getTestDashboard(): DashboardResource; /** * Test helper to create a "spy" component that will capture the DashboardProvider's store, allowing you to inspect * its state in tests. Be sure to render the DashboardProviderSpy component that's returned in the component test * underneath the DashboardProvider. */ export declare function createDashboardProviderSpy(): { DashboardProviderSpy: () => null; store: { value?: StoreApi; }; }; //# sourceMappingURL=dashboard-provider.d.ts.map