export declare type Jwt = {
    [key: string]: any;
};
export declare function validate(jwtToken: string): Promise<Jwt>;
