/// <reference path="../globals.d.ts" />
/**
 * @class LoadingSpinner - instantiate a spinner to handle loading state in your powerpages site
 */
/********/ /********/ export default class LoadingSpinner extends HTMLElement {
    private element;
    constructor();
    /**
     * @method hide - Hides the loading spinner
     */
    hide(): void;
    /**
     * @method show - Shows the loading spinner
     */
    show(): void;
}
