import { CustomField } from '../models/CustomField'; export declare class CreateOpportunityRequest { 'opportunityTitle': string; 'nextActionTime'?: string; 'nextActionNotes'?: string; 'opportunityNotes'?: string; 'estimatedCloseTime'?: string; 'includeInForecast'?: boolean; 'projectedRevenueLow'?: number; 'projectedRevenueHigh'?: number; 'contactId'?: string; 'stageId'?: string; 'userId'?: string; 'customFields'?: Array; 'affiliateId'?: string; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }