import type { AuthParameters } from '../delegation/types/authenticate'; import type { AuthenticatedAutomation, AutomationCredentials, AutomationParameters } from './types/authenticate'; import type { OpenIdAutomationContext } from './types/context'; type AuthenticationAutomationArgs = AutomationCredentials & { context: OpenIdAutomationContext; automation: AutomationParameters; }; export declare const authenticateAutomation: ({ generateJwt, context: { nonce, ...context }, automation }: AuthenticationAutomationArgs) => Promise; export {};