import { InlineCommentDraft } from './context/types'; interface MobileInlineCommentProps { activeDraft: InlineCommentDraft | null; activeDraftId: string | null; isConnected: boolean; isDiscardCommentOverlayVisible: boolean; mobileDraftRef: React.RefObject; onAttemptClose: () => void; onCancelDiscard: () => void; onConfirmDiscard: () => void; onSubmit: () => void; onUpdateDraftText: (draftId: string, text: string) => void; } export declare const MobileInlineComment: ({ activeDraft, activeDraftId, isConnected, isDiscardCommentOverlayVisible, mobileDraftRef, onAttemptClose, onCancelDiscard, onConfirmDiscard, onSubmit, onUpdateDraftText, }: MobileInlineCommentProps) => import("react/jsx-runtime").JSX.Element; export {};