import React from 'react'; declare type Props = { isImageOnly?: boolean; children: React.ReactNode; isPreview?: boolean; }; declare const NoteImageContainer: ({ isImageOnly, isPreview, children }: Props) => JSX.Element; export default NoteImageContainer;