import { i as OpenClawConfig } from "./types.openclaw-CpnoYlBx.js"; //#region src/channels/plugins/directory-types.d.ts /** * Shared input for channel directory lookups. * * Directory-capable plugins receive the active config plus optional account * scope, search text, and result limit from setup or command surfaces. */ type DirectoryConfigParams = { cfg: OpenClawConfig; accountId?: string | null; query?: string | null; limit?: number | null; }; //#endregion export { DirectoryConfigParams as t };