import React, { CSSProperties } from 'react';
export type Props = {
    className?: string;
    style?: CSSProperties;
    reason: string;
    reasonText: string;
    postId?: number;
    onClose?: () => void;
};
export declare const SubmitReportForm: ({ className, style, reason, reasonText, onClose, postId, }: Props) => React.JSX.Element;
