import { TextStyle } from '../types'; export declare const toTextCss: (props: TextStyle) => { color: string | undefined; fontFamily: any; fontSize: any; fontWeight: any; fontStyle: string | undefined; textAlign: any; opacity: any; letterSpacing: any; lineHeight: any; textShadow: string | undefined; textTransform: import("csstype").Property.TextTransform | undefined; }; export declare const pluckTextStyles: (props: any) => { fontSize: any; color: any; fontWeight: any; fontFamily: any; align: any; italic: any; opacity: any; letterSpacing: any; lineHeight: any; textShadow: any; uppercase: any; }; export declare const toTextShadow: (value?: string | Array) => string | undefined;