import { IQueryHandler } from '@nestjs/cqrs';
import { GetDeviceQuery } from '../queries/get-device.query';
import { DevicesService } from '../../devices.service';
export declare class GetDeviceQueryHandler implements IQueryHandler<GetDeviceQuery> {
    private readonly deviceService;
    constructor(deviceService: DevicesService);
    execute(query: GetDeviceQuery): Promise<any>;
}
//# sourceMappingURL=get-device.handler.d.ts.map