import { ComponentIdList } from '@teambit/component-id'; import type { Consumer } from '@teambit/legacy.consumer'; import type { ConsumerComponent as Component } from '@teambit/legacy.consumer-component'; export declare function getAutoTagPending(consumer: Consumer, changedComponents: ComponentIdList): Promise; export type AutoTagResult = { component: Component; triggeredBy: ComponentIdList; }; export declare function getAutoTagInfo(consumer: Consumer, changedComponents: ComponentIdList): Promise;