import { ElementProxy } from "yaml-scene/src/elements/ElementProxy"; import { IElement } from "yaml-scene/src/elements/IElement"; export default class ApiMD implements IElement { proxy: ElementProxy; $$: IElement; $: this; private _apis; title: string; description: string; signature: string; prefixHashLink: string; outFile: string; constructor(); init(props: any): void; prepare(): Promise; exec(): Promise; }