import React from "react"; import { ElementProps } from "./Element"; import { ElementsProps } from "./Elements"; export type ElementPropertyProps = Omit; export declare const ElementProperty: ((props: ElementPropertyProps) => React.JSX.Element) & { original: (props: ElementPropertyProps) => React.JSX.Element; originalName: string; displayName: string; } & { original: ((props: ElementPropertyProps) => React.JSX.Element) & { original: (props: ElementPropertyProps) => React.JSX.Element; originalName: string; displayName: string; }; originalName: string; displayName: string; } & { createDecorator: (decorator: import("@webiny/react-composition").ComponentDecorator<((props: ElementPropertyProps) => React.JSX.Element) & { original: (props: ElementPropertyProps) => React.JSX.Element; originalName: string; displayName: string; }>) => (props: unknown) => React.JSX.Element; } & { STYLE: string; ELEMENT: string; }; export interface ElementPropertiesProps { group?: string; transform?: ElementsProps["transform"]; } export declare const ElementProperties: (props: ElementPropertiesProps) => React.JSX.Element;