import type { ApiSpecType, OpenAPIDefinition, AsyncApiDefinition, DownloadUrl, RawApiDocsOptions } from '@redocly/api-docs'; import type { DocumentNode } from 'graphql'; export type DocumentBuildContext = { rootConfig: Record | null; config: Record; apiConfig: Record; mergedConfig: Record; relativePath: string; }; type CreateOptionsDocument = OpenAPIDefinition | AsyncApiDefinition | DocumentNode; export declare function buildDownloadUrls(relativePath: string, specType: ApiSpecType): DownloadUrl[]; export declare function createOptions(specType: ApiSpecType, document: CreateOptionsDocument, context: DocumentBuildContext): RawApiDocsOptions; export {}; //# sourceMappingURL=options.d.ts.map