import { QrTypeService } from './qr_type.service';
import { CreateQrTypeDto } from './qr_type.dto';
export declare class QrTypeController {
    private readonly qrTypeService;
    constructor(qrTypeService: QrTypeService);
    create(createQrTypeDto: CreateQrTypeDto): {
        encrypted: any;
        decrypted: any;
    };
    findAll(): string;
    findOne(id: string): string;
    remove(id: string): string;
}
