import { type TextProps } from './Text';
import React from 'react';
interface ViewProps extends TextProps {
    focus?: boolean;
    height?: number;
    scrollbar?: boolean;
    vi?: boolean;
    children: any;
}
export default function View({ focus, height: _height, scrollbar, vi, children, ...props }: ViewProps): React.JSX.Element;
export {};
