import React from 'react'; import { ThemeProp } from './types'; declare function applyStaticStyles(staticStyles: ((theme: ThemeProp['theme']) => string) | string, ComponentToWrap: React.ComponentType): React.ComponentType; export default applyStaticStyles;