import type { BotConfig } from "../../../config/config.js"; import type { WizardPrompter } from "../../../wizard/prompts.js"; import { type ChannelAccessPolicy } from "./channel-access.js"; export declare function configureChannelAccessWithAllowlist(params: { cfg: BotConfig; prompter: WizardPrompter; label: string; currentPolicy: ChannelAccessPolicy; currentEntries: string[]; placeholder: string; updatePrompt: boolean; setPolicy: (cfg: BotConfig, policy: ChannelAccessPolicy) => BotConfig; resolveAllowlist: (params: { cfg: BotConfig; entries: string[]; }) => Promise; applyAllowlist: (params: { cfg: BotConfig; resolved: TResolved; }) => BotConfig; }): Promise;