declare type Options = { tab: string; }; export declare function CodeJar(editor: HTMLElement, highlight: (e: HTMLElement) => void, opt?: Partial): { updateOptions(options: Partial): void; updateCode(code: string): void; onUpdate(cb: (code: string) => void): void; toString: () => string; destroy(): void; }; export {};