import { JWTPayload } from '../types.d.js';

declare function decodeJwt<PayloadType = JWTPayload>(jwt: string): PayloadType & JWTPayload;

export { decodeJwt };
