import * as ts from 'typescript/lib/tsserverlibrary';
/**
 * Create the TypeScript Language Service plugin
 */
declare function init(modules: {
    typescript: typeof ts;
}): {
    create: (info: ts.server.PluginCreateInfo) => ts.LanguageService;
};
export = init;
