import React from "react"; export interface ElementControlsProps { canDrag?: boolean; canEdit?: boolean; canHighlight?: boolean; canActivate?: boolean; children?: React.ReactNode; } export declare const ElementControls: ((props: ElementControlsProps) => React.JSX.Element | null) & { original: (props: ElementControlsProps) => React.JSX.Element | null; originalName: string; displayName: string; } & { original: ((props: ElementControlsProps) => React.JSX.Element | null) & { original: (props: ElementControlsProps) => React.JSX.Element | null; originalName: string; displayName: string; }; originalName: string; displayName: string; } & { createDecorator: (decorator: import("@webiny/app-admin").ComponentDecorator<((props: ElementControlsProps) => React.JSX.Element | null) & { original: (props: ElementControlsProps) => React.JSX.Element | null; originalName: string; displayName: string; }>) => (props: unknown) => React.JSX.Element; };