import { JwtFromRequestFunction } from 'passport-jwt';
export interface FirebaseAuthStrategyOptions {
    extractor?: JwtFromRequestFunction;
    useLocalRoles?: boolean;
    checkRevoked?: boolean;
    validateRole?: boolean;
    rolesClaimKey?: string;
}
