import { JwtService } from '@nestjs/jwt';
import { Observable } from 'rxjs';
import { IJwtPayload } from '../entities';
export interface IParseJwtTokenActionOptions {
    token: string;
}
export declare class ParseJwtTokenAction {
    readonly jwtService: JwtService;
    constructor(jwtService: JwtService);
    handle(dto: IParseJwtTokenActionOptions): Observable<IJwtPayload>;
}
