import { PartnerType } from './company'; import { ContactsType } from './contact'; import { GraphqlApiProgramLevelType, GraphqlApiProgramType } from './program'; export declare type SubscriptionStatusType = { id?: number; name?: string; }; export declare type SubscriptionType = { id?: number; autoReporting?: boolean; company?: PartnerType; endedAt?: string; dateCTAValid?: string; level?: GraphqlApiProgramLevelType; localContact?: ContactsType; orderId?: string; orderIdText?: string; partnerContact?: ContactsType; partnerId?: string; partnerIdText?: string; program?: GraphqlApiProgramType; startedAt?: string; userNote?: string; validatedAt?: string; status?: SubscriptionStatusType; hasActiveProgramAgreement?: boolean; };