import type { Theme } from "../ui-kit/ThemeProvider/ThemeProvider.types"; import { type EditorProps } from "./Editor"; export interface BrandEditorProps extends EditorProps { theme?: Theme | string; colorScheme?: "light" | "dark"; } export declare const BrandEditor: import("react").MemoExoticComponent>>;