import type { ChannelDoctorEmptyAllowlistAccountContext } from "../../../channels/plugins/types.adapters.js"; import type { KlawConfig } from "../../../config/types.klaw.js"; type ScanEmptyAllowlistPolicyWarningsParams = { doctorFixCommand: string; extraWarningsForAccount?: (params: ChannelDoctorEmptyAllowlistAccountContext) => string[]; shouldSkipDefaultEmptyGroupAllowlistWarning?: (params: ChannelDoctorEmptyAllowlistAccountContext) => boolean; }; export declare function scanEmptyAllowlistPolicyWarnings(cfg: KlawConfig, params: ScanEmptyAllowlistPolicyWarningsParams): string[]; export {};