import type { DSLQuery } from '@lingxiteam/dsl/lib/core'; import type { FC } from 'react'; interface StyleInputProps { propsKey: string; placeholder: string; value: string; DSLCore?: DSLQuery; onChange: (e: any) => void; } declare const StyleInput: FC; export default StyleInput;