import { UpdateWithdrawDto } from './dto/update-withdraw.dto';
import { WithdrawService } from './withdraw.service';
export declare class WithdrawController {
    private withdrawService;
    constructor(withdrawService: WithdrawService);
    getById(withdrawId: number): Promise<{
        success: boolean;
        messages: string[];
        data: {};
    }>;
    withdrawList(page: any, limit: any, sorts: any, filters: any): Promise<{
        success: boolean;
        messages: string[];
        data: {};
    }>;
    updateWithdraw(withdrawId: number, dto: UpdateWithdrawDto): Promise<{
        success: boolean;
        messages: string[];
        data: {};
    }>;
}
