/** * react-native-agentkit * * Convert React Native app flows to CLI for AI agent automation. * * Quick start: * ```tsx * import { AgentKitProvider } from 'react-native-agentkit'; * * function App() { * return ( * * * * ); * } * ``` */ export { AgentKitProvider } from './AgentKitProvider'; export type { AgentKitProviderProps, AgentKitContextValue, } from './AgentKitProvider'; export { useAgentKit, useAgentKitElement, useAgentKitRescan, useAgentKitStatus, } from './hooks'; export type { ElementInfo, ElementPosition, ElementState, ElementType, ActionType, Command, CommandName, CommandResponse, ScreenState, AgentKitConfig, BridgeEvent, BridgeEventType, } from './types'; export { ElementRegistry } from './ElementRegistry'; export { RelayTransport } from './RelayTransport'; export type { RelayTransportConfig } from './RelayTransport'; export { DEFAULT_CONFIG } from './types'; //# sourceMappingURL=index.d.ts.map