/// //@ts-ignore import React, { Component } from 'react'; import { PropertyEditorProps } from '@dt/core-ui'; /// //@ts-ignore import { i18n } from 'i18next'; export declare type PlaceholderEditorStubEditorProps = PropertyEditorProps & { label: string | Function; in17n: i18n; }; /** * Property editor that shows simple label instead of input control. **/ export declare class PlaceholderEditorStub extends Component { render(): React.JSX.Element; }