@chamn/engine
Version:
11 lines (10 loc) • 418 B
TypeScript
import { InputCommonRef } from '../type';
type Value = Record<string, string>;
export type MarginAndPaddingInputProps = {
value?: Value;
initialValue?: Value;
onChange?: (newVal: Value) => void;
prefix: 'margin' | 'padding';
};
export declare const MarginAndPaddingInput: import('react').ForwardRefExoticComponent<MarginAndPaddingInputProps & import('react').RefAttributes<InputCommonRef>>;
export {};