import type { PageProps } from '@redocly/config'; import type { ApiItem, EventType, MarkdocOptions } from '@redocly/api-docs'; /** * Prefix the store's absolute routing fields (`link`, `routeSlug`) so the api-docs * client router matches `location.pathname`, which carries the path prefix. Relative * `content` links stay untouched (the UI joins `basePath` at render). */ export declare function applyPathPrefixToApiItems(items: ApiItem[]): ApiItem[]; export declare function useCollectMarkdocOptions(markdown: PageProps['markdown'], markdocOptions?: MarkdocOptions): MarkdocOptions; type EventFunctionInput = string | ((event: EventType) => void) | undefined; export declare function safeParseFunction(fnInput: EventFunctionInput): ((event: EventType) => void) | null; export {}; //# sourceMappingURL=helpers.d.ts.map