welcome-ui
Version:
Customizable design system with react, typescript, tailwindcss and ariakit.
10 lines (9 loc) • 419 B
TypeScript
import { UsePopover, UsePopoverHover } from './usePopover';
import { PopoverOptions } from './';
export interface ContentWrapperOptions {
children: PopoverOptions['children'];
className?: string;
onClose?: () => void;
store: UsePopover | UsePopoverHover;
}
export declare const ContentWrapper: ({ children, className, onClose, store }: ContentWrapperOptions) => import("react/jsx-runtime").JSX.Element;