import { BusinessParamDto } from '../../access/dtos/business.param.dto'; import { AccessBusinessService } from '../../access/services/access.business.service'; import { ListingService } from '../../access/services/listing.service'; import { LimitConfigListFilterDto } from '../dtos/limit.config.list.filter.dto'; import { ModifyVerificationConfigDto } from '../dtos/modify.verification.config.dto'; import { LimitConfigEntity } from '../entities/limit.config.entity'; import { WorkflowLimitService } from '../services/workflow.limit.service'; export declare class LimitConfigController { private readonly accessBusinessService; private readonly workflowLimitService; private readonly listingService; private managerRole; constructor(accessBusinessService: AccessBusinessService, workflowLimitService: WorkflowLimitService, listingService: ListingService); search(body: LimitConfigListFilterDto): Promise; get(params: BusinessParamDto): Promise; show(params: BusinessParamDto): Promise; create(body: ModifyVerificationConfigDto): Promise; activate(params: BusinessParamDto): Promise; deactivate(params: BusinessParamDto): Promise; }