/** * SPDX-License-Identifier: Apache-2.0 * Copyright FINOS FDC3 contributors - see NOTICE file */ import { DisplayMetadata } from './DisplayMetadata.js'; /** Interface representing the data fields of a user channel, without the functions. */ interface UserChannelTemplate { readonly id: string; readonly type: 'user'; readonly displayMetadata?: DisplayMetadata; } declare const recommendedChannels: Array; export default recommendedChannels;