import {ViewStyle, TextStyle, ImageStyle} from 'react-native'; export declare type SingleStyle = ViewStyle | TextStyle | ImageStyle; export declare type Styles = | SingleStyle | { [P in keyof T]: SingleStyle; }; export declare const createStyle: >(styles: T) => T;