import { ElementRef } from '@angular/core'; import { DocumentRef } from '@bespunky/angular-zen/core'; /** * Creates `div.google-maps` element that will be passed to the native maps API for map rendering, and adds it as a child to the specified parent element. * @internal * @export * @param {ElementRef} parent The element to add the new map element to. * @param {DocumentRef} document The reference to the document. * @returns {ElementRef} A reference to the native element created for map rendering. */ export declare function createAndAppendMapElement(parent: ElementRef, document: DocumentRef): ElementRef;