import type { IdentityData } from "../../../../features/security/IdentityContext/Identity.js"; export interface IAuthenticator { authenticate(token: string): Promise; } /** Convert an authentication token into identity data. */ export declare const Authenticator: import("@webiny/di").Abstraction; export declare namespace Authenticator { type Interface = IAuthenticator; }