import type { GlobalTheme } from '../global'; declare const getRichTextEditorTheme: (theme: GlobalTheme) => { colors: { toolbarBorderColor: string; toolbarBackgroundColor: string; toolbarButtonSelectedBackground: string; text: string; }; space: { wrapperMarginBottom: number; toolbarHorizontalPadding: number; editorPadding: number; mention: number; }; fontSizes: { editor: number; }; sizes: { editorMinHeight: number; toolbarButtonSize: number; toolbarSeparatorWidth: number; toolbarSeparatorHeight: number; }; radii: { mention: number; }; }; export default getRichTextEditorTheme;