import React from "react"; import { Entry } from "../../../entry/models/Entry"; type Props = { entry: Entry | null; show: "edit" | "view" | ""; onChangeShow: () => void; onHide: () => void; showAsset?: boolean; showAttachments?: boolean; showSection?: boolean; }; export declare const EntryViewer: ({ entry, show, onHide, showAsset, showAttachments, showSection, }: Props) => React.JSX.Element; export {};