import type { HTMLAttributes, ReactNode } from "react";
export type EditorPanelPosition = "top-left" | "top-center" | "top-right" | "center-left" | "center-right" | "bottom-left" | "bottom-center" | "bottom-right";
export interface EditorPanelProps extends HTMLAttributes {
position?: EditorPanelPosition;
children: ReactNode;
}
export declare function EditorPanel({ position, className, children, ...props }: EditorPanelProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=EditorPanel.d.ts.map