export declare function usePopin(margin?: number): {
    popinRef: import("react").RefObject<HTMLDivElement>;
    wrapperRef: import("react").RefObject<HTMLDivElement>;
    shown: boolean;
    show: () => void;
    hide: () => void;
};
