export declare const ArchivedReason: { readonly segment_closed: "segment_closed"; readonly superseded: "superseded"; readonly contradicted: "contradicted"; readonly escalated: "escalated"; readonly expired: "expired"; readonly duplicate: "duplicate"; }; export type ArchivedReason = (typeof ArchivedReason)[keyof typeof ArchivedReason]; export declare const ResolutionState: { readonly not_applicable: "not_applicable"; readonly pending: "pending"; readonly resolved: "resolved"; }; export type ResolutionState = (typeof ResolutionState)[keyof typeof ResolutionState]; export declare const ResolutionOutcome: { readonly not_applicable: "not_applicable"; readonly challenger_won: "challenger_won"; readonly original_retained: "original_retained"; }; export type ResolutionOutcome = (typeof ResolutionOutcome)[keyof typeof ResolutionOutcome]; export declare const Surface: { readonly claude: "claude"; readonly chatgpt: "chatgpt"; readonly gemini: "gemini"; readonly deepseek: "deepseek"; readonly dev_cli: "dev_cli"; readonly web_ui: "web_ui"; readonly manual: "manual"; }; export type Surface = (typeof Surface)[keyof typeof Surface]; export declare const TokenScope: { readonly dev_cli: "dev_cli"; readonly mcp_consumer_t0: "mcp_consumer_t0"; readonly mcp_consumer_oauth: "mcp_consumer_oauth"; readonly pairing_temp: "pairing_temp"; }; export type TokenScope = (typeof TokenScope)[keyof typeof TokenScope]; export declare const FeedbackType: { readonly bug: "bug"; readonly praise: "praise"; readonly suggestion: "suggestion"; readonly general: "general"; }; export type FeedbackType = (typeof FeedbackType)[keyof typeof FeedbackType]; //# sourceMappingURL=enums.d.ts.map