import { IVector3 } from '@easytwin/runtime'; import { AnimationProInputNumberProps } from './AnimationProInputNumber'; import * as React from 'react'; interface Vector3FormItemProps extends Omit { label: string; value: IVector3; prefix?: [string, string, string]; constrainable?: boolean; onChange?: (name: string, value: IVector3 | undefined) => void; onBlur: (name: string, value: IVector3 | undefined) => void; size?: 'large' | 'default' | 'small' | 'mini'; isEuler?: boolean; } export declare const AnimationVector3FormItem: React.FC; export {};