UNPKG

@chamn/engine

Version:
10 lines (9 loc) 360 B
import { InputCommonRef } from '../type'; type Value = Record<'box-shadow', string>; export type ShadowInputProps = { value?: Value; initialValue?: Value; onChange?: (newVal: Value) => void; }; export declare const ShadowInput: import('react').ForwardRefExoticComponent<ShadowInputProps & import('react').RefAttributes<InputCommonRef>>; export {};