import type { JSONSchemaType } from '@redocly/ajv'; import type { PluginInstance } from '../plugins/types.js'; export interface ResolvedTheme { type: 'resolvedTheme'; name: string; path: string; stylesFile?: string; config: { schema?: JSONSchemaType; ssoSchema?: JSONSchemaType; ejectIgnore?: string[]; }; plugin: PluginInstance; markdoc: { schemaFile: string; componentsFile: string | undefined; } | null; } export declare function resolveThemes(contentDir: string, names?: string[]): Promise; //# sourceMappingURL=themes.d.ts.map