import * as React from 'react'; import type { IPropertyPaneCustomFieldInternalProps } from './IPropertyPaneCustomField'; /** * This component help web part developers add custom components into the PropertyPane. * The PropertyPane support a host of inbuilt field types. But that list can never be sufficient. * This component fills in the gap by allowing the web part developer to create * a custom field type and use the PropertyPane as per their need. * * @beta */ export default class PropertyPaneCustomFieldHost extends React.Component { private static readonly _logSource; private _domElement; private _detachedElement; componentDidMount(): void; componentDidUpdate(): void; componentWillUnmount(): void; render(): React.ReactElement; private _onChangedCallback; } //# sourceMappingURL=PropertyPaneCustomFieldHost.d.ts.map