import type { Handler } from 'hono'; import type { Store } from '../../store'; export declare const AI_ASSISTANT_IDENTITY_STATUS_HEADER = "x-redocly-ai-assistant-identity-status"; export declare function askAiHandler(store: Store): Handler; /** * Ticket submissions from the embedded assistant. Proxied for the portal's own org/project so the * embedding page never needs those ids, and gated exactly like `/_ask-ai`: escalation is reachable * only by portal users who can use AI search. */ export declare function aiAssistantEscalationsHandler(store: Store): Handler; /** * Message ratings (thumbs up/down) from the embedded assistant. Proxied and gated exactly like * `/_ask-ai`: feedback is reachable only by portal users who can use AI search. */ export declare function aiAssistantFeedbackHandler(store: Store): Handler; //# sourceMappingURL=ask-ai.d.ts.map