export interface ArticleTagsItem { articleSlug: string; tagSlugs: string[]; append?: boolean; } export interface ArticleTagsResult { articleSlug: string; articleId?: string; tagSlugs: string[]; status: 'updated' | 'unchanged' | 'dry-run' | 'failed'; message?: string; } export interface ArticleTagsBatchResult { results: ArticleTagsResult[]; /** False when one or more items failed (others may still have succeeded). */ ok: boolean; } export interface ArticleTagsFromJsonOptions { items: ArticleTagsItem[]; dryRun?: boolean; configPath?: string; spaceKey?: string; } export declare function runArticleTagsFromJson(opts: ArticleTagsFromJsonOptions): Promise; //# sourceMappingURL=article-tags-from-json.d.ts.map