import { Joi } from '../helpers'; import type { Role } from './roles'; export interface IVerifyParams { token: string; allow: Role[]; } export declare const verifyParamsSchema: Joi.ObjectSchema; export interface IVerifyResult { status: number; message: string; }