export interface ContainerProps { container?: HTMLElement | null | (() => HTMLElement | null); containerClassName?: string; } export declare const getContainer: (props: ContainerProps) => HTMLElement | null; export declare const getRootContainer: (props: ContainerProps) => HTMLElement | null; export declare const getRoot: (props: ContainerProps) => HTMLDivElement | null; declare const useContainer: (props?: ContainerProps) => { getRoot: () => HTMLDivElement | null; getContainer: () => HTMLElement | null; unMount: () => void; }; export default useContainer; //# sourceMappingURL=use-container.d.ts.map