react-native-ui-lib
Version:
[](https://stand-with-ukraine.pp.ua)
10 lines (9 loc) • 324 B
TypeScript
import React from 'react';
import { LayoutChangeEvent } from 'react-native';
import { PointProps } from './types';
type PointPropsInternal = PointProps & {
onLayout?: (event: LayoutChangeEvent) => void;
testID?: string;
};
declare const Point: (props: PointPropsInternal) => React.JSX.Element;
export default Point;