import type { HTMLAttributes, ReactNode } from 'react'; export type DDDPinCardProps = Omit, 'title'> & { title?: ReactNode; description?: ReactNode; pinLabel?: ReactNode; children?: ReactNode; active?: boolean; accent?: string; }; export declare const DDDPinCard: ({ title, description, pinLabel, children, active, accent, className, style, role, tabIndex, ...props }: DDDPinCardProps) => import("react/jsx-runtime").JSX.Element;