import { Panel } from '@lumino/widgets'; export declare class ProfilePropertiesWidget extends Panel { private readonly container; private readonly toolbar; constructor(); addProperty(name: string, value: string): void; removeProperty(name: any): void; collectProperties(): { [key: string]: string; }; updateProperties(properties: { name: string; value: string; }[]): void; } export declare class ProfilePropertiesToolbar extends Panel { readonly LABEL_LINK_TEXT = "Available properties"; readonly LABEL_LINK_URL = "https://spark.apache.org/docs/2.4.4/configuration.html#available-properties"; readonly ADD_BUTTON_TEXT = ""; readonly ADD_BUTTON_TITLE = "Add property"; constructor(); private createAvailableProperties; private createAdd; private onAddNewClicked; }