/** * V1 compatibility wrapper for useCopilotReadable. * * Provides app-state and other information to the Copilot context. * Delegates directly to the v2 CopilotKitCoreVue instance. */ import { type Ref } from "vue"; import type { WatchSource } from "vue"; export interface UseCopilotReadableOptions { /** The description of the information to be added to the Copilot context. */ description: string; /** The value to be added to the Copilot context. Object values are automatically stringified. */ value: unknown; /** Whether the context is available to the Copilot. */ available?: "enabled" | "disabled"; /** Custom conversion function to serialize the value to a string. */ convert?: (description: string, value: unknown) => string; } export declare function useCopilotReadable(options: UseCopilotReadableOptions, deps?: WatchSource[]): Ref; //# sourceMappingURL=use-copilot-readable.d.ts.map