import type { BotConfig } from "../config/config.js"; import type { SlackChannelConfig } from "../config/types.slack.js"; type SlackChannels = Record; type MigrationScope = "account" | "global"; export type SlackChannelMigrationResult = { migrated: boolean; skippedExisting: boolean; scopes: MigrationScope[]; }; export declare function migrateSlackChannelsInPlace(channels: SlackChannels | undefined, oldChannelId: string, newChannelId: string): { migrated: boolean; skippedExisting: boolean; }; export declare function migrateSlackChannelConfig(params: { cfg: BotConfig; accountId?: string | null; oldChannelId: string; newChannelId: string; }): SlackChannelMigrationResult; export {};