import { StyleSheet } from 'react-native'; /** * Create StyleSheet with customized pre-processor * Return a StyleSheet that pre-processed * @param styles * @returns StyleSheet * */ declare const createStyleSheet: | StyleSheet.NamedStyles>(styles: T & StyleSheet.NamedStyles) => T; export default createStyleSheet;