import { IVector2 } from '@easytwin/runtime'; import * as React from 'react'; interface GridMatrixWithInputProps { pos: IVector2 | undefined; onChange: (value: IVector2) => void; onConfirm: (value: IVector2) => void; } export declare function GridMatrixWithInput(props: GridMatrixWithInputProps): React.JSX.Element; export {};