import React from 'react'; import './style.css'; interface IFlowCommentProps { placeholder?: string; isH5?: boolean; defaultValue?: IFlowCommentValue; onChange?: (value: IFlowCommentValue) => void; bordered?: boolean; atButtonStyle?: React.CSSProperties; } export interface IFlowCommentValue { operationComment?: string; opinionUserMap?: Record | null; highlightPositionList?: string | ''; } export declare function FlowComment(props: IFlowCommentProps): JSX.Element; export {};