export declare class Touchpoint { id: string; tenantId: string; storeId: string; type: string; appId: string; name: string; description: string; position: any; users: string[]; created: string; updated: string; cartId: string; static fromJson(obj: any): Touchpoint; toJson(): any; constructor(id: string, tenantId: string, storeId: string, type: string, appId: string, name: string, description: string, position: any, users: string[], created: string, updated: string, cartId: string); }