import { StyleSheet, TextStyle, ViewStyle } from 'react-native'; interface InputStyles { body: ViewStyle; control: TextStyle; disabledControl: TextStyle; errorControl: ViewStyle; } export declare const createInputStyle: (theme: DiceUI.Theme) => StyleSheet.NamedStyles; interface TextAreaStyles { container: ViewStyle; wordLimit: TextStyle; } export declare const createTextAreaStyle: (theme: DiceUI.Theme) => StyleSheet.NamedStyles; export {};