import { type GovernanceEventDispatcher, type GovernanceEventSink, type GovernanceService } from "./types.js"; export interface CreateGovernanceEventDispatcherOptions { readonly service: Pick; readonly sink?: GovernanceEventSink; readonly now?: () => number; } export declare function createGovernanceEventDispatcher(options: CreateGovernanceEventDispatcherOptions): GovernanceEventDispatcher;