import { Response } from 'express';
import { Repository } from 'typeorm';
import { GoogleDriveService } from './google-drive.service';
import { App } from '../../entities/app.entity';
import { User } from '../../entities/user.entity';
export declare class DriveController {
    private driveService;
    private appRepo;
    private userRepo;
    private readonly logger;
    constructor(driveService: GoogleDriveService, appRepo: Repository<App>, userRepo: Repository<User>);
    getIcon(identifier: string, res: Response): Promise<void>;
}
