/** * Navigate the UI to a view. * * Writes a navigate command to application state which the UI reads and auto-deletes. * * Usage: * pnpm action navigate --view=overview * pnpm action navigate --view=dreams * pnpm action navigate --view= * pnpm action navigate --path=/some/route * * Options: * --view View name to navigate to * --path URL path to navigate to * --threadId Chat thread ID to open on the chat route */ declare const _default: import("@agent-native/core").ActionDefinition<{ view?: string | undefined; path?: string | undefined; threadId?: string | undefined; }, string>; export default _default; //# sourceMappingURL=navigate.d.ts.map