/** * Bridge declarative {@link ChannelSetupWizard} (from bundled plugins) to {@link ChannelConfigurator}. */ import type { ChannelSetupWizard } from '../../../../channels/plugins/types.adapters.js'; import type { ChannelConfigurator } from './types.js'; export declare function channelSetupWizardToConfigurator(wizard: ChannelSetupWizard, meta: { name: string; description: string; }): ChannelConfigurator;