import type { ReactNode } from 'react'; import React from 'react'; import type { FixtureId } from 'react-cosmos-core'; type ContextValue = { selectFixture: (fixtureId: FixtureId, keepNavOpen: boolean) => unknown; }; export declare function FixtureSelectProvider(props: { children: ReactNode; onSelect: ContextValue['selectFixture']; }): React.JSX.Element; export declare function useFixtureSelect(): ContextValue; export {};