/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; export interface MapLoadingProps extends JSX.HTMLAttributes { /** Showing; it fades rather than unmounts, so keep it mounted and flip this. */ visible?: boolean; /** Caption in instrument voice. */ text?: string; className?: string; } /** * The screen that covers an instrument viewport while it boots. * * @example * */ export declare const MapLoading: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=MapLoading.d.ts.map