/** * Component that traps focus within its children. */ interface FocusTrapProps { children: React.ReactNode; className?: string; } export default function FocusTrap({ children, className }: FocusTrapProps): import("react/jsx-runtime").JSX.Element; export {};