UNPKG

@hhgtech/hhg-components

Version:
11 lines (10 loc) 352 B
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;