import * as React from 'react'; import { RectangleProps } from '../rectangle/Rectangle'; import { FrameNodeProps } from '../frame/Frame'; export declare type ViewProps = FrameNodeProps | RectangleProps; declare const View: React.FC; export { View };