import React from "react";
import { EditorContextProps } from "./EditorContext";
interface PaletteProps extends EditorContextProps {
    height: number;
    imageObj: HTMLImageElement;
    getStage?: (stage: any) => void;
}
declare const _default: React.ForwardRefExoticComponent<Omit<React.PropsWithChildren<PaletteProps>, keyof EditorContextProps> & React.RefAttributes<React.Component<PaletteProps, any, any>>>;
export default _default;
