import React from "react"; import { Comment as CommentType } from "replyke-core"; import { BottomSheetMethods } from "@gorhom/bottom-sheet/lib/typescript/types"; type SheetManagerContext = { commentOptionsSheetRef: React.RefObject; reportCommentSheetRef: React.RefObject; openCommentOptionsSheet: (newComment?: CommentType) => void; closeCommentOptionsSheet: () => void; openReportCommentSheet: () => void; closeReportCommentSheet: () => void; optionsComment: CommentType | null; setOptionsComment: React.Dispatch>; reportedComment: CommentType | null; setReportedComment: React.Dispatch>; }; export declare const SheetManagerContext: React.Context>; export declare const SheetManagerProvider: ({ children, }: { children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element; export {};