export declare const initialize: ({ embedElementAttribute, cssFilename, forceReload, factoryMethod, container, }: {
    embedElementAttribute: string;
    cssFilename: string;
    forceReload?: boolean | undefined;
    factoryMethod: (id: string, options: unknown, element: HTMLElement) => void;
    container?: HTMLElement | Document | undefined;
}) => Promise<void>;
