export type ContainerType<T extends HTMLElement = HTMLElement> = T | (() => T);
declare function getContainer(container?: ContainerType | null): HTMLElement | null | undefined;
export default getContainer;
