/**
* @description The function takes a JWT token and returns the decoded payload as a JSON object.
* @param {string} token - The JWT token that you want to parse.
* @returns The JSON payload of the JWT.
*/
export defaultfunctionparseJwt(token: string): any;