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