@chamn/engine
Version:
10 lines (9 loc) • 430 B
TypeScript
import { InputCommonRef } from './type';
export type StyleUIPanelProps = {
initialVal?: Record<string, string>;
value?: Record<string, string>;
onValueChange?: (newVal: Record<string, string>) => void;
noCard?: boolean;
};
export type StyleUIPanelRef = InputCommonRef;
export declare const StyleUIPanel: import('react').ForwardRefExoticComponent<StyleUIPanelProps & import('react').RefAttributes<InputCommonRef>>;