declare module AppInstanceModel { interface Properties { baseContext?: string; infoPath?: string; communityPortalUrl?: string; } } export declare const COMPOUND_NAME = "COMPOUND_NAME"; export declare const DISPLAY_NAME = "DISPLAY_NAME"; export declare const NAME = "NAME"; declare type SearchInstanceType = 'COMPOUND_NAME' | 'DISPLAY_NAME' | 'NAME' | 'DESCRIPTION'; interface AppInstanceModel { displayName?: string; name: string; description?: string; enabled?: boolean; orgRootId?: string; properties?: AppInstanceModel.Properties; picture?: string; } interface AppInstanceSearch { pageSize?: number; pageContext?: string; searchColumn?: SearchInstanceType; searchTerm?: string; orderDesc?: boolean; } export { AppInstanceModel, AppInstanceSearch, SearchInstanceType };