import type { Plugin } from './utils'; declare function use(this: Codelet, plugin: Plugin, ...options: Options): Codelet; export interface Codelet { use: typeof use; } export declare const col: Codelet; export {};