import { ExchangeRateService } from './exchange-rate.service';
import { CreateExchangeRateDto, UpdateExchangeRateDto } from './dto';
import { PaginationDto } from '../../common/dto/pagination.dto';
export declare class ExchangeRateController {
    private readonly service;
    constructor(service: ExchangeRateService);
    findAll(query: PaginationDto): Promise<import("../../common/responses/api-response").ApiResponse<import("../../entities").ExchangeRateEntity[]>>;
    findById(id: string): Promise<import("../../common/responses/api-response").ApiResponse<import("../../entities").ExchangeRateEntity>>;
    create(dto: CreateExchangeRateDto): Promise<import("../../common/responses/api-response").ApiResponse<{
        id: string;
        message: string;
    }>>;
    update(id: string, dto: UpdateExchangeRateDto): Promise<import("../../common/responses/api-response").ApiResponse<{
        id: string;
        message: string;
    }>>;
    remove(id: string): Promise<import("../../common/responses/api-response").ApiResponse<{
        message: string;
    }>>;
}
