import type { GuardianConfig } from '../types';
import type { Request, Response, NextFunction } from 'express';
export declare function createGuardianMiddleware(config?: Partial<GuardianConfig>): (req: Request, res: Response, next: NextFunction) => Promise<void>;
