import React from 'react'; import './PaddingEditor.less'; export interface PaddingEditorProps extends Omit, 'onChange'> { defaultValue?: string; value?: string; onChange?: (value: string) => void; unit?: string; max?: number; } declare const PaddingEditor: (props: PaddingEditorProps) => JSX.Element; export default PaddingEditor;