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