import type { TaglibLookup } from "@marko/compiler/babel-utils"; import { Parsed } from "../../../parser"; export type RuntimeAPI = (typeof RuntimeAPI)[keyof typeof RuntimeAPI]; export declare const RuntimeAPI: { readonly tags: "tags"; readonly class: "class"; }; export declare function getRuntimeAPI(translator: { preferAPI?: string; } | undefined, lookup: TaglibLookup, parsed: Parsed): { interop: boolean; api: RuntimeAPI; };