interface UseCommentDrawerLifecycleProps { activeSuggestionDraftCard: unknown; closeFilterSelects: () => void; isBelow1280px: boolean; isCommentMobileFocused: boolean; isInlineDraftOpen: boolean; isOpen: boolean; onClose: () => void; setIsDiscardCommentOverlayVisible: (visible: boolean) => void; setIsDiscardSuggestionOverlayVisible: (visible: boolean) => void; } export declare const useCommentDrawerLifecycle: ({ activeSuggestionDraftCard, closeFilterSelects, isBelow1280px, isCommentMobileFocused, isInlineDraftOpen, isOpen, onClose, setIsDiscardCommentOverlayVisible, setIsDiscardSuggestionOverlayVisible, }: UseCommentDrawerLifecycleProps) => void; export {};