import type { Language } from '../../core/models/types.js'; import type { FacetType } from '../catalog/catalogFacets.js'; import type { ExecPresetScope } from './types.js'; export type ExecLanguage = Extract; export type LocalizedExecScope = ExecPresetScope | 'default' | 'project' | 'global'; export declare function execLabel(lang: ExecLanguage, key: string, vars?: Record): string; export declare function execCurrentLabel(lang: ExecLanguage, value: string): string; export declare function execScopeLabel(lang: ExecLanguage, scope: LocalizedExecScope): string; export declare function execSourceLabel(lang: ExecLanguage, source: string): string; export declare function execFacetKindLabel(lang: ExecLanguage, kind: FacetType): string; //# sourceMappingURL=labels.d.ts.map