import { StudioLayoutComponentsConfigProps } from './layoutComponents'; import { RteCustomToolbarProps } from './shared'; export type { RteCustomToolbarProps } from './shared'; export type RteCustomToolbarResult = (StudioLayoutComponentsConfigProps | undefined | null | false)[]; export type RteCustomToolbar = (props: RteCustomToolbarProps) => RteCustomToolbarResult; export interface RteConfig { toolbar?: RteCustomToolbar; }