import type { IPropertyPaneCustomFieldProps } from './IPropertyPaneCustomField'; import { type IPropertyPaneField } from '../propertyPaneField/IPropertyPaneField'; /** * Helper method to create a custom field on the PropertyPane. * * @remarks * The purpose of the custom field is to help the web part developer to add a custom control to * the PropertyPane. The PropertyPane supports a host of inbuilt field types. While * this list meets the demands of most web parts, but there are exceptional cases * when web parts have special needs and need a special control. The custom field * helps fill that gap. * * @param properties - Strongly typed Custom field properties. * * @beta */ export declare function PropertyPaneCustomField(properties: IPropertyPaneCustomFieldProps): IPropertyPaneField; //# sourceMappingURL=PropertyPaneCustomField.d.ts.map