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

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

export { decodeJwt };
