detachSDKFromContainer()
This function does the opposite of attachSDKToContainer. If the SDK is currently attached to a DOM element, it detaches it from the DOM element and restores it to it's original state: floating in the bottom right corner of the page. If the SDK is not attached to any DOM element, this function does nothing. Here is the function API and some example usage:
/**
* Detaches the SDK from any containers and renders it as a bubble in the bottom right corner of the page
*/
export const detachSDKFromContainer = (): void;
// Example usage
const someFunction = () => {
detachSDKFromContainer();
}