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