import type { RawOptions, OpenAPIDefinition, OperationModel } from '@redocly/openapi-docs'; import type { PageProps } from '../../../../shared/types'; import type { OpenAPISource } from '../../../content/content-provider'; import type { LayoutVariant } from '@theme'; type OpenAPIDocsStore = { definition: OpenAPIDefinition; options: RawOptions; basePath?: string; source: OpenAPISource; portalOptions?: { defaultMimeType?: string; operation?: OperationModel; layout?: LayoutVariant; showRightPanelToggle?: boolean; definitionId?: string; }; }; export declare function joinWithSeparator(base?: string, path?: string, sep?: string): string; export declare function usePatchedStore(storeJs: OpenAPIDocsStore, { markdown, definitionId, openapiOptions }: PageProps): OpenAPIDocsStore; export {}; //# sourceMappingURL=helpers.d.ts.map