/** * @jsxRuntime classic * @jsx jsx */ import { type ReactNode } from 'react'; export type TPopoverSurfaceProps = { children: ReactNode; }; /** * Optional styled wrapper for popover content. * * Adds default visual styling (background, border-radius, box-shadow) * using design tokens. * * Presentational primitive - `children`-only by design. This component * intentionally exposes no `style`, `className`, `xcss`, `id`, or `ref` * props. If you need any of those, render your own wrapper element inside * `Popover` instead. `PopoverSurface` is the no-config "give me the default * ADS overlay look" surface, nothing more. */ export declare function PopoverSurface({ children }: TPopoverSurfaceProps): ReactNode;