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