///
import { EnvironmentService } from '../../common_services/config';
import { DynamodbService } from '../../common_services/dynamodb/dynamodbService';
export declare class DeviceVerification {
private readonly dynamodbService;
private envService;
static deviceTokenValid: boolean;
static accessTokenValid: boolean;
static mockIsDeviceTokenValid: jest.Mock;
static mockCheckAccessToken: jest.Mock;
constructor(dynamodbService: DynamodbService, envService: EnvironmentService);
isDeviceTokenValid: (deviceUuid: string, accessToken: string) => boolean;
checkAccessToken: () => void;
}