/** * @jsxRuntime classic * @jsx jsx */ import React from 'react'; interface ReadViewProps { editButtonLabel: string; onEditRequested: () => void; postReadViewClick: () => void; editButtonRef: React.RefObject; readViewFitContainerWidth?: boolean; readView: () => React.ReactNode; testId?: string; } declare const ReadView: ({ editButtonLabel, onEditRequested, postReadViewClick, editButtonRef, readViewFitContainerWidth, readView, testId, }: ReadViewProps) => JSX.Element; export default ReadView;