/** * @jsxRuntime classic * @jsx jsx */ import type { ReactElement } from 'react'; import { jsx } from '@emotion/react'; type Props = { aspectRatio?: number | string; borderColor?: string; borderSize?: number; children: ReactElement; htmlAttrs?: { [key: string]: string | number | undefined; }; isSelected?: boolean; onClick: React.EventHandler; }; export declare const InlineImageWrapper: ({ children, isSelected, aspectRatio, borderSize, borderColor, htmlAttrs, onClick, }: React.PropsWithChildren) => jsx.JSX.Element; export {};