import { WithdrawService } from '../service/withdraw.service'; import { ApplyWithdrawDto } from '../dto/withdraw.dto'; export declare class WithdrawController { private readonly withdrawService; constructor(withdrawService: WithdrawService); apply(dto: ApplyWithdrawDto): Promise>; }