import * as STG from '.'; export declare type STG = typeof STG; export declare type PluginFunction = (stg: STG, options?: T) => any; export declare type Plugin = PluginFunction | { install: PluginFunction; }; export declare function use(plugin: Plugin, options?: T): any;