/** * Composable to manage AI layer and AI writer functionality * * @param {Object} options - Configuration options * @param {Object} options.activeEditorRef - Ref to the active editor * @returns {Object} - AI state and methods */ export function useAi({ activeEditorRef }: { activeEditorRef: Object; }): Object;