import { ISupportedChannel } from '../models/SupportedChannel'; /** * Channel Applications on the DaVinci framework must report to the framework which channel types * are supported. Some DaVinci apps will disable or enable specific features depending on the channels that * are available. * * See: * - [[registerSetSupportedChannels]] * - [[ISupportedChannel]] * * @param channels Array of channels that will be supported by this app. */ export declare function setSupportedChannels(channels: ISupportedChannel[]): Promise; /** * Register to receive events where apps inform you what channels they support * @param callback Called when another app calls [[setSupportedChannels]] */ export declare function registerSetSupportedChannels(callback: (originatingAppName: string, channels: ISupportedChannel[]) => Promise): Promise;