import { SharedContracts } from './shared-contracts';
export declare namespace CustomAppsContracts {
    interface ICustomAppContract {
        name: string;
        codename: string;
        source_url: string;
        config: string | null;
        allowed_roles?: SharedContracts.ICodenameIdReferenceContract[];
    }
    interface ICustomAppsListResponseContract {
        custom_apps: ICustomAppContract[];
        pagination: SharedContracts.IPaginationModelContract;
    }
}
