import * as React from 'react'; import { Pseudos } from 'csstype'; import { SpaceProps, LayoutProps, BorderProps, ShadowProps, ColorProps, FlexboxProps, GridProps, BackgroundProps, OpacityProps, OverflowProps, PositionProps } from 'styled-system'; declare type AnimationProps = { animation?: string; animationDelay?: string; animationDirection?: string; animationDuration?: string; animationFillMode?: string; animationIterationCount?: string; animationName?: string; animationPlayState?: string; animationTimingFunction?: string; }; declare type BaseViewProps = SpaceProps & LayoutProps & BorderProps & ShadowProps & ColorProps & FlexboxProps & GridProps & OpacityProps & OverflowProps & BackgroundProps & PositionProps & AnimationProps & { userSelect?: string; }; export declare type ViewProps = Partial, 'as'>> & { as?: any; sx?: BaseViewProps & Partial>; }; declare const View: import("@emotion/styled-base").StyledComponent, HTMLDivElement>, ViewProps, import("../tokens").Theme>; export default View;