UNPKG

@atlaskit/renderer

Version:
15 lines (14 loc) 737 B
/** * @jsxRuntime classic * @jsx jsx */ import { jsx, type SerializedStyles } from '@emotion/react'; import type { RendererWrapperProps } from './index'; export declare const textHighlightPaddingStyles: SerializedStyles; type RendererStyleContainerProps = Pick<RendererWrapperProps, 'onClick' | 'onMouseDown' | 'appearance' | 'contentMode' | 'allowNestedHeaderLinks' | 'allowColumnSorting' | 'useBlockRenderForCodeBlock' | 'allowAnnotations' | 'allowTableResizing' | 'innerRef' | 'children' | 'allowRendererContainerStyles'> & { isInsideOfSyncBlock?: boolean; isInsideSyncBlock?: boolean; testId?: string; }; export declare const RendererStyleContainer: (props: RendererStyleContainerProps) => jsx.JSX.Element; export {};