import { type ComponentPropsWithoutRef, type Ref } from 'react'; export type FigmaCommentProps = Omit, 'children'> & { ariaLabel?: string; authorName?: string; avatarAlt?: string; avatarUrl?: string; defaultOpen?: boolean; message?: string; notificationLabel?: string; onOpenChange?: (isOpen: boolean) => void; open?: boolean; ref?: Ref; showNotification?: boolean; timestamp?: string; width?: number; }; export declare const FigmaComment: ({ ariaLabel, authorName, avatarAlt, avatarUrl, className, defaultOpen, message, notificationLabel, onOpenChange, open, ref, showNotification, style, timestamp, width, ...restProps }: FigmaCommentProps) => import("react/jsx-runtime").JSX.Element;