import Policy from "../../chip-types/policy.js"; import type Context from "../../context.js"; import DenyAll from "../../datastore/deny-all.js"; import { AllowAll } from "../../datastore/allow-all.js"; export default class Super extends Policy { static type_name: string; _getRestrictingQuery(context: Context): Promise; checkerFunction(context: Context): Promise<{ allowed: boolean; reason: string; }>; isItemSensitive: (_: Context) => Promise; }