import { Bud } from '@roots/bud-framework'; export interface after { (callback: ((app: Bud) => Promise) | ((app: Bud) => unknown), onError?: (error: Error) => unknown): Bud; } /** * Execute a function after compiler has finished */ export declare const after: after;