welcome-ui
Version:
Customizable design system with react, typescript, tailwindcss and ariakit.
13 lines (12 loc) • 451 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;
displayName: string;
};