//#region src/channels/plugins/account-action-gate.d.ts /** * Resolves whether an account-scoped action is enabled. */ type ActionGate> = (key: keyof T, defaultValue?: boolean) => boolean; /** * Creates an action gate where account-specific flags override channel-level defaults. */ declare function createAccountActionGate>(params: { baseActions?: T; accountActions?: T; }): ActionGate; //#endregion export { createAccountActionGate as t };