export interface SapModel { type: string; uri: string; settings?: SapModelSettings; } interface SapModelSettings { bundleName: string; } export {};