import { Ginny } from "./types"; export declare function flatten(v: any | any[], ret?: any[]): Promise; export declare function createText(text: string): { type: "text"; text: string; }; export declare function createElement(text: string): { type: "element"; text: string; };