interface DestinationDataInterface { Name: string; ServiceInstanceName?: string; ServiceKeyName?: string; TokenServiceInstanceName?: string; TokenServiceKeyName?: string; MyURL?: string; URL?: string; Authentication?: string; 'sap.cloud.service'?: string; 'sap.applicationdevelopment.actions.enabled'?: boolean; 'sap.build.usage'?: string; 'sap.processautomation.enabled'?: boolean; 'HTML5.DynamicDestination'?: boolean; WebIDEEnabled?: boolean; AppgyverEnabled?: boolean; MobileEnabled?: boolean; } declare const DestinationData_base: { new (...args: any): DestinationDataInterface; type: string; }; export default class DestinationData extends DestinationData_base { } export {};