import Twm from '../TwmWatcher';
import { ContextResource } from '../resource';
export interface TwmMiddleware {
apply: (twm: Twm, context: ContextResource) => void;
}
export declare type TwmPlugin = {
new (...args: any[]): any;
};
export declare const DefaultPlugins: TwmPlugin[];