import { AuthIdentityDTO, ProjectConfigOptions } from "@medusajs/framework/types";
import { type Secret } from "jsonwebtoken";
export declare function generateJwtTokenForAuthIdentity({ authIdentity, actorType, }: {
    authIdentity: AuthIdentityDTO;
    actorType: string;
}, { secret, expiresIn, options, }: {
    secret: Secret;
    expiresIn: string | undefined;
    options?: ProjectConfigOptions["http"]["jwtOptions"];
}): string;
//# sourceMappingURL=generate-jwt-token.d.ts.map