nextuiq
Version:
NextUIQ is a modern, lightweight, and developer-friendly UI component library for React and Next.js. Built with TypeScript and Tailwind CSS, it offers customizable, accessible, and performance-optimized components with built-in dark mode, theme customizat
6 lines (5 loc) • 514 B
TypeScript
import { PopoverProps, PopoverTriggerProps, PopoverContentProps } from './types';
import * as React from 'react';
export declare const Popover: ({ children, open: controlledOpen, onOpenChange }: PopoverProps) => import("react/jsx-runtime").JSX.Element;
export declare const PopoverTrigger: React.ForwardRefExoticComponent<PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>>;
export declare const PopoverContent: React.ForwardRefExoticComponent<PopoverContentProps & React.RefAttributes<HTMLDivElement>>;