import * as React from 'react'; import { DefaultShapeProps, BorderProps, CornerProps, StyleOf, InstanceItemProps, SelectionEventProps } from '../../types'; import { LayoutStyleProperties } from '../../styleTransformers/transformLayoutStyleProperties'; import { GeometryStyleProperties } from '../../styleTransformers/transformGeometryStyleProperties'; import { BorderStyleProperties } from '../../styleTransformers/transformBorderProperties'; import { BlendStyleProperties } from '../../styleTransformers/transformBlendProperties'; import { YogaStyleProperties } from '../../yoga/YogaStyleProperties'; import { OnLayoutHandlerProps } from '../../hooks/useOnLayoutHandler'; export interface RectangleProps extends DefaultShapeProps, CornerProps, BorderProps, InstanceItemProps, SelectionEventProps, OnLayoutHandlerProps { style?: StyleOf; children?: undefined; } declare const Rectangle: React.FC; export { Rectangle };