import React from "react"; export declare enum Orientation { NE = 0, N = 1, NW = 2 } interface PopProps { active: [boolean, React.Dispatch>]; className?: string; target: JSX.Element; children: React.ReactNode; popOnFocus?: boolean; orientation?: Orientation; } export default function Pop({ className, active: [active, setActive], target, children, popOnFocus, orientation, }: PopProps): JSX.Element; export {};