/** * Revealed event handler. * * Handles `if.event.revealed` — fired when items become visible inside * a container. Pulls a direct message/text payload first, then tries * the language provider keyed on event type, then falls back to a * built-in "Inside the {container} you see {items}." formatter. * * Public interface: `handleRevealed`. Used by the pipeline's * event-type dispatch. * * Owner context: `@sharpee/engine` — internal prose pipeline. * * @see ADR-094 Event Chaining * @see ADR-174 §Engine-internal prose pipeline (port from text-service) */ import type { ITextBlock } from '@sharpee/text-blocks'; import type { ISemanticEvent } from '@sharpee/core'; import type { HandlerContext } from './types'; /** * Handle `if.event.revealed` events. */ export declare function handleRevealed(event: ISemanticEvent, context: HandlerContext): ITextBlock[]; //# sourceMappingURL=revealed.d.ts.map