/**
 * @typedef {object} InitializerProps
 * @property {(id: string) => void} setPlugin - A function to set the plugin.
 */
/**
 * Initializes the plugin.
 * @param {InitializerProps} props - The component props.
 * @returns {null} - This component doesn't render anything.
 */
declare const Initializer: ({ setPlugin }: {
    setPlugin: (id: string) => void;
}) => null;
export { Initializer };
