import type { OpenAPIDefinition } from '@redocly/openapi-docs'; import type { RedocConfig } from '@redocly/config'; export declare function useStore(sharedDataKey?: string): { store: undefined; error: string; baseSlug?: undefined; } | { store: { definition: OpenAPIDefinition; options: RedocConfig; baseSlug: string; }; error: null; baseSlug: string; }; //# sourceMappingURL=use-store.d.ts.map