export type CreateElementFunction = (component: string | object, attributes?: { [k: string]: any; }, children?: any | any[]) => any[] | any; /** * Groups attributes passed to a React pragma to the VueJS fashion * @param h the VueJS createElement function passed in render functions * @returns pragma usable in buble rendered JSX for VueJS */ export default function adaptCreateElement(h: CreateElementFunction): CreateElementFunction; export declare const concatenate: (src: { [key: string]: any; }, ...otherObj: { [key: string]: any; }[]) => { [key: string]: any; };