import { IVector2 } from '@easytwin/runtime'; import { ProInputNumberProps } from './ProInputNumber'; import * as React from 'react'; interface Vector2FormItemProps extends Omit { label: string; value: IVector2; constrainable?: boolean; prefix?: [string, string]; suffix?: [string, string]; onChange?: (name: string, value: IVector2 | undefined) => void; onBlur: (name: string, value: IVector2 | undefined) => void; tooltip?: React.ReactNode; } export declare const Vector2FormItem: React.FC; export {};