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