import { DefineComponent } from "vue";
import { VMConfiguration } from "./types";
export declare function getConfiguration(): VMConfiguration;
/**
 *
 * @param icon The icon component to use
 * @param key The key to use for the icon
 * @param defaults The default props for the icon
 */
export declare function setIconData(icon: DefineComponent<any, any, any, any>, key: string, defaults?: Record<string, any>): void;
export declare function setMountedOn(container: HTMLElement): void;
