import { Parameter } from '@vn-sdk/shared'; import { FrontendAction } from '../types/frontend-action.js'; import '@vn-sdk/runtime-client-gql'; import 'react'; /** * Hook to create an authenticated action that requires user sign-in before execution. * * @remarks * This feature is only available when using VN SDK's hosted cloud service. * To use this feature, sign up at https://cloud.vn.ai to get your publicApiKey. * * @param action - The frontend action to be wrapped with authentication * @param dependencies - Optional array of dependencies that will trigger recreation of the action when changed */ declare function useAiAuthenticatedAction_c(action: FrontendAction, dependencies?: any[]): void; export { useAiAuthenticatedAction_c };