import type { Report } from '../../types';
import type { ColumnScope } from '../../AdaptableState/Common/ColumnScope';
import type { TagVariant } from './Tag';
/** True when a tag label is a scope placeholder (e.g. `[All Columns]`), not a column name. */
export declare const isBracketedScopeTagLabel: (value: string) => boolean;
/** True when export column tags are actual column friendly names. */
export declare const reportColumnTagsUseColumnVariant: (report: Report) => boolean;
export declare const getScopeViewItemsTagVariant: (scope: ColumnScope) => TagVariant | undefined;
