import { type PropsWithChildren, type ForwardedRef } from 'react'; import type { Popover as PopoverElement, PopoverProperties } from '@watching/clips/elements'; export interface PopoverProps extends PropsWithChildren, 'padding'>> { ref?: ForwardedRef; } declare module 'react' { namespace JSX { interface IntrinsicElements { 'ui-popover': PopoverProps; } } } export declare const Popover: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=Popover.d.ts.map