import React, { ComponentType } from 'react'; import type { Falsy, StyleProp, TextStyle, ViewStyle } from 'react-native'; import { Sx } from './sx'; interface WithStyledProps { style?: StyleProp | ((...state: any[]) => StyleProp); } export interface StyledProps { sx?: Sx | (Sx | Falsy)[]; } export declare function styled

(WrappedComponent: ComponentType

): React.ForwardRefExoticComponent & React.RefAttributes>; export {}; //# sourceMappingURL=styled.d.ts.map