import type { AppStore } from '@redocly/graphql-docs'; import type { GraphQLSearchDocument } from '../../types.js'; type GetSearchDocumentParams = { label: string; groupName: string; store: AppStore; isTypeGroup?: boolean; items?: Set; }; type GetSearchDocumentReturnType = GraphQLSearchDocument | (GraphQLSearchDocument | undefined)[] | undefined; export declare function getSearchDocument({ label, groupName, store, isTypeGroup, items, }: GetSearchDocumentParams): GetSearchDocumentReturnType; export declare function convertDocumentToMarkdown(document: GraphQLSearchDocument, baseLevel?: number): string; export {}; //# sourceMappingURL=utils.d.ts.map