import { AuthService, AuthenticationSessionService } from './services/authentication.service';
import { BaseModule, SDKAuthEntity } from '@serene-dev/la-nest-library';
import { UserDetailEntity } from './entities/authentication.entity';
import { JwtAuthGuard } from './guards/jwt-auth.guard';
import { ProviderUsersService } from './services/provider-users.service';
import { AuthSessionEntity } from './entities/authentication-session.entity';
export declare class AuthenticationModule extends BaseModule {
    static entities: (typeof SDKAuthEntity | typeof UserDetailEntity | typeof AuthSessionEntity)[];
    static services: (typeof AuthenticationSessionService | typeof AuthService | typeof JwtAuthGuard | typeof ProviderUsersService)[];
}
