import { ReactNode } from "react"; import { getNextSibling, getPreviousSibling } from "./dom-query"; declare const FocusTrapWrapper: ({ children, closePopup, focusElements, id }: { children: ReactNode | ReactNode[]; closePopup?: (arg?: boolean) => void; id: string; focusElements?: string[]; }) => JSX.Element; export { getNextSibling, getPreviousSibling }; export default FocusTrapWrapper; //# sourceMappingURL=index.d.ts.map