import { HandwrittenBillService } from './handwritten-bill.service';
import { CreateHandwrittenBillDto } from './dto/create-handwritten-bill.dto';
export declare class HandwrittenBillController {
    private readonly handwrittenBillService;
    constructor(handwrittenBillService: HandwrittenBillService);
    findAll(): Promise<import("../../entities/handwritten-bill.entity").HandwrittenBill[]>;
    getLatestBill(): Promise<number>;
    create(createHandwrittenBillDto: CreateHandwrittenBillDto): Promise<import("../../entities/handwritten-bill.entity").HandwrittenBill>;
}
