import AuthBaseService from './baseAuthService';
import JwtService from './jwtService';
declare const AuthService: {
    base: typeof AuthBaseService;
    jwt: typeof JwtService;
};
export type AuthServiceType = keyof typeof AuthService;
export declare const getAuthService: (serviceType: AuthServiceType) => typeof AuthBaseService | typeof JwtService;
export {};
