/**
 * Goal Entity Types (Nouns)
 *
 * Goal tracking entities: Goal, OKR, KPI, Metric.
 *
 * @packageDocumentation
 */
import type { Noun } from 'ai-database';
/**
 * Goal entity
 *
 * Represents a strategic or operational goal.
 */
export declare const Goal: Noun;
/**
 * OKR entity
 *
 * Represents an objective with measurable key results.
 */
export declare const OKR: Noun;
/**
 * KeyResult entity
 *
 * Represents a measurable key result within an OKR.
 */
export declare const KeyResult: Noun;
/**
 * KPI entity
 *
 * Represents a key performance indicator.
 */
export declare const KPI: Noun;
/**
 * Metric entity
 *
 * Represents a general business metric or measurement.
 */
export declare const Metric: Noun;
/**
 * Initiative entity
 *
 * Represents a strategic initiative or project supporting goals.
 */
export declare const Initiative: Noun;
export declare const GoalEntities: {
    Goal: Noun;
    OKR: Noun;
    KeyResult: Noun;
    KPI: Noun;
    Metric: Noun;
    Initiative: Noun;
};
export declare const GoalCategories: {
    readonly objectives: readonly ["Goal", "OKR", "KeyResult"];
    readonly measurement: readonly ["KPI", "Metric"];
    readonly execution: readonly ["Initiative"];
};
//# sourceMappingURL=goals.d.ts.map