import { ReportReasonKey } from "../../constants/reportReasons";
declare function useSubmitReport(): {
    submitCommentReport: ({ targetId, reason, details, }: {
        targetId: string;
        reason: ReportReasonKey;
        details?: string;
    }) => Promise<void>;
    submitEntityReport: ({ targetId, reason, details, }: {
        targetId: string;
        reason: ReportReasonKey;
        details?: string;
    }) => Promise<void>;
};
export default useSubmitReport;
