export type ReflexCall = { name: string; arguments: Record; }; /** True when the reflex layer is configured on this device. */ export declare function reflexEnabled(): boolean; /** * Feed one utterance/sentence to the reflex layer. Fire-and-forget: never * throws, never blocks, executes at most the model's chosen allowlisted * action. `source` labels logs ("speech" | "reply"). */ export declare function reflex(text: string, source: "speech" | "reply"): void; /** Boot the sidecar early (gateway start) so the first reflex is warm. */ export declare function prewarmReflex(): void;