//#region src/channels/plugins/account-action-gate.d.ts type ActionGate> = (key: keyof T, defaultValue?: boolean) => boolean; declare function createAccountActionGate>(params: { baseActions?: T; accountActions?: T; }): ActionGate; //#endregion export { createAccountActionGate as t };