import { type HTMLAttributes } from "react";
import { type EmailProps } from "./Email";
import type { FontEntry } from "@/types/font.types";
export declare const EmailEditorContainer: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
export declare const EmailEditorMain: import("react").ForwardRefExoticComponent & {
previewMode: "desktop" | "mobile" | undefined;
} & import("react").RefAttributes>;
export interface EmailLayoutProps extends EmailProps {
fonts?: FontEntry[];
}
export declare const EmailLayout: ({ variables, disableVariablesAutocomplete, theme, isLoading, hidePublish, channels, brandEditor, routing, colorScheme, readOnly, fonts, ...rest }: EmailLayoutProps) => import("react/jsx-runtime").JSX.Element;