/** * Token verification. It wraps the jsonwebtoken library * @param token the token to verify and decode * @param sectet the secret necessary to decode the token * @return the decoded token, or an error. */ export declare function verifyJwtToken(token: string, secret: string): Promise<{}>;