import type { DealContactPersonResponse, ViewDealDetailResponse, ViewDealIndexResponseItem } from '@/client'; import type { DeepPartial } from './factory.util'; export declare class DealFactory { static createContactPerson(overrides?: DeepPartial): DealContactPersonResponse; static createDetail(overrides?: DeepPartial): ViewDealDetailResponse; static createIndex(overrides?: DeepPartial): ViewDealIndexResponseItem; static createIndexList(count: number, overrides?: DeepPartial): ViewDealIndexResponseItem[]; }