import { A2PBillingConsent } from './a2PBillingConsent'; import { BusinessClassificationPrivate } from './businessClassificationPrivate'; import { BusinessIndustry } from './businessIndustry'; import { BusinessRegistrationIdentifier } from './businessRegistrationIdentifier'; import { BusinessType } from './businessType'; import { JobPosition } from './jobPosition'; export declare class A2PStandardSubmission { 'firstName': any | null; 'lastName': any | null; 'email': any | null; 'businessClassification': BusinessClassificationPrivate; 'businessIndustry': BusinessIndustry; 'taxIDType': BusinessRegistrationIdentifier; 'taxID': any | null; 'websiteURL': any | null; 'socialMediaURL': any | null; 'regionsOfOperation': any | null; 'messagingVolumeHigh': any | null; 'jobTitle': any | null; 'jobPosition': JobPosition; 'billingConsent'?: A2PBillingConsent; 'businessName': any | null; 'businessType': BusinessType; 'address1': any | null; 'address2'?: any | null; 'city': any | null; 'state': any | null; 'postalCode': any | null; 'country': any | null; 'phoneNumber': any | null; 'isTwilioTermsRead': any | null; 'isWalletSmsTermsRead': any | null; 'isPricingUnderstood': any | null; 'isPrivacyAndTosPresent': any | null; 'privacyPolicyUrl'?: any | null; 'willObtainConsent': any | null; 'willHonorOptOut': any | null; 'willFollowContentRules': any | null; 'willComplyLawAndHours': any | null; 'infoIsAccurate': any | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace A2PStandardSubmission { }