import { ReactNode } from 'react'; import { SurfaceVariant } from './Surface.js'; export interface PopupContentProps { /** Forwarded to the underlying `Surface` as `level`. Default `1`. Accepts the relative (`"+1"`/`"-1"`) syntax via `Surface.level`. */ surfaceLevel?: number; /** Card content. */ children: ReactNode; /** Extra classes for the inner content area. Default includes `!h-auto w-full p-4`. */ contentClassName?: string; /** Extra classes for the card `Surface`. */ className?: string; /** Surface variant for the popup card. Default `'solid'`. */ variant?: SurfaceVariant; /** Render the outline ring. Default `true`. */ outline?: boolean; /** Forwarded to the card `Surface`'s root element. */ ref?: React.Ref; } /** Shape of `PopupContent` defaults that can be supplied via `CladdProvider`'s `defaults` prop. */ export type PopupContentDefaultProps = Partial>; export declare const PopupContent: (props: PopupContentProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=PopupContent.d.ts.map