export declare type Fork = { use(plugin: Plugin): T; }; export declare type Plugin = (fork: Fork) => T; export declare type Def = Plugin; export declare type Omit = Pick>;