import { ElementProxy } from '../ElementProxy'; import { IElement } from '../IElement'; export default class Writer implements IElement { proxy: ElementProxy; $$: IElement; $: this; title?: string; content: string; path: string; adapters: (string | any)[]; private getAdapter; constructor(); init(props: any): void; prepare(): Promise; exec(): Promise; }