import type { AiScenarioLabelKey } from './ai-scenario-label-key.js';
import type { AiLabelValue } from './ai-label-value.js';
/**
 * Representation of the 'AiScenarioLabel' schema.
 */
export type AiScenarioLabel = {
    key: AiScenarioLabelKey;
    value: AiLabelValue;
} & Record<string, any>;
//# sourceMappingURL=ai-scenario-label.d.ts.map