import React from "react"; /** * MarginPaddingSettings (Padding/Margin settings). * This component is reused in Padding and Margin plugins since the behavior of both CSS attributes is the same. */ interface PMSettingsPropsType { label: string; value: any; valueKey: string; getUpdateValue: any; sides?: Record[]; } declare const _default: React.MemoExoticComponent<({ label, value, valueKey, getUpdateValue, sides }: PMSettingsPropsType) => React.JSX.Element>; export default _default;