type AddPropertyPopoverProps = { showLabel?: boolean; path: string[]; disabled?: boolean; createPlaceholder: (isObject: boolean) => void; }; /** * A set of "add string property" and "add object property" buttons which triggers creating a placeholder. * @param props * @constructor */ export declare function AddPropertyButtons({ showLabel, path, disabled, createPlaceholder, }: AddPropertyPopoverProps): import("react/jsx-runtime").JSX.Element; export {};