import type { Bud } from '@roots/bud-framework'; import type { Events, EventsStore } from '@roots/bud-framework/registry'; import { Hooks } from '../base/base.js'; /** * Event hooks */ export declare class EventHooks extends Hooks { get(id: T, ...value: Events[T]): Promise; set(id: T, ...input: Array<(...value: Events[T]) => Promise>): Bud; }