import type { ActorAuthorityBinding, AuthorityResponse, Proposal } from "../types.js"; import type { AuthorityHandler } from "./types.js"; export declare class AutoApproveHandler implements AuthorityHandler { evaluate(proposal: Proposal, binding: ActorAuthorityBinding): Promise; } export declare function createAutoApproveHandler(): AutoApproveHandler;