import { Definition } from "./parser"; import { ContractIdentifier } from "./blocks/types"; export declare const setAsDOM: () => "dom" | "react"; export declare const setAsReact: () => "dom" | "react"; declare type StoreOptions = { file?: string; url?: string; }; export declare const testForDOM: (container: HTMLElement | any, definition: Definition, store: StoreOptions) => Promise; export declare const testForReact: (container: HTMLElement | any, definition: Definition, store: StoreOptions) => Promise; export declare const verifyContract: (container: HTMLElement | any, options: StoreOptions & ContractIdentifier & { version: string; }) => Promise; export * from "./events"; export * from "./actions"; export * from "./queries"; export * from "./blocks/types";