import { IVector2 } from '@easytwin/runtime'; import * as React from 'react'; interface GridMatrixProps { className?: string; pos: IVector2; onPosChanged?: (value: IVector2) => void; } export declare function GridMatrix(props: GridMatrixProps): React.JSX.Element; export {};