import * as React from 'react'; import { PreviewCard as BasePreviewCard } from '@base-ui/react/preview-card'; import { type FloatingContentProps } from '../../internal/floating'; type PreviewCardProps = React.ComponentProps; declare const PreviewCard: ((props: PreviewCardProps) => React.JSX.Element) & { createHandle: typeof BasePreviewCard.createHandle; }; type PreviewCardTriggerProps = React.ComponentProps; declare function PreviewCardTrigger(props: PreviewCardTriggerProps): React.JSX.Element; type PreviewCardContentProps = React.ComponentProps & FloatingContentProps, React.ComponentProps> & { /** * Render the pointer and the thicker anchored border. * @default true */ arrow?: boolean; }; declare function PreviewCardContent({ className, arrow, children, ...props }: PreviewCardContentProps): React.JSX.Element; export { PreviewCard, PreviewCardTrigger, PreviewCardContent }; export type { PreviewCardProps, PreviewCardTriggerProps, PreviewCardContentProps }; //# sourceMappingURL=preview-card.d.ts.map