import { JwtOption } from './jwt.interface'; export declare class JwtService { private jwtOption; constructor(jwtOption: JwtOption); sign(payload: object, options?: object): string; verify(token: string, options?: object): string | object; decode(token: string, options?: object): string | { [key: string]: any; }; }