import { OffersService } from './offers.service';
import { CreateOfferDto, UpdateOfferDto } from './offer.dto';
export declare class OffersController {
    private readonly service;
    constructor(service: OffersService);
    findAll(): Promise<import("./offer.entity").Offer[]>;
    findOne(id: string): Promise<import("./offer.entity").Offer>;
    create(dto: CreateOfferDto): Promise<import("./offer.entity").Offer>;
    update(id: string, dto: UpdateOfferDto): Promise<import("./offer.entity").Offer>;
    remove(id: string): Promise<void>;
}
