import type { FC, ReactNode } from 'react'; import { type TestableProps } from '../../utils/testId'; export interface PopoverProps extends TestableProps { children: ReactNode; open?: boolean; onOpenChange?: (open: boolean) => void; } export declare const Popover: FC;