import type { CSSProperties } from 'react'; import type { ColorValue } from 'react-native'; export interface EnrichedInputThemingColors { cursorColor?: ColorValue; placeholderTextColor?: ColorValue; selectionColor?: ColorValue; } export declare function enrichedInputThemingToCSSProperties({ cursorColor, placeholderTextColor, selectionColor, }: EnrichedInputThemingColors): CSSProperties; //# sourceMappingURL=enrichedInputThemingToCSSProperties.d.ts.map