import React from 'react'; import { AnyStyle } from './types/StyleSheet'; declare type AnyProps = { style: AnyStyle; [key: string]: any; } & any; declare function withResponsive>(Component: T): React.ForwardRefExoticComponent & { ref?: React.Ref>; } & AnyProps>; declare function withResponsive

; }>(Component: React.ForwardRefExoticComponent

): React.ForwardRefExoticComponent

; declare function withResponsive

(Component: React.FunctionComponent

): React.ForwardRefExoticComponent

; export { withResponsive };