declare const textTheme: { defaultProps: { level: string; variant: string; }; baseStyle: { textAlign: string; color: string; fontFamily: string; fontStyle: string; }; variants: { display: (props: Record) => { [x: string]: any; }; heading: (props: Record) => { [x: string]: any; }; body: (props: Record) => { [x: string]: any; }; caption: (props: Record) => { [x: string]: any; }; inline: (props: Record) => { [x: string]: any; }; label: (props: Record) => { [x: string]: any; }; }; }; export default textTheme;