import { FormItemProps } from "../FormItem/FormItem"; import { BezierCurveEditorProps } from "@galacean/editor-ui/src/BezierCurveEditor/types"; type ParticlePropertyType = "constant" | "curve" | "two-constant" | "two-curve"; type ParticleValue = { value: any; type: ParticlePropertyType | string; label?: string; min?: number; max?: number; step?: number; }[]; export interface FormItemParticleProps extends FormItemProps { type?: ParticlePropertyType; algo?: BezierCurveEditorProps["algo"]; onValueChange?: (value: FormItemParticleProps["value"], type: ParticlePropertyType) => void; } export declare function FormItemParticle(props: FormItemParticleProps): import("react/jsx-runtime").JSX.Element; export {};