import { ResponsiveStyle, CSSValue } from "./types"; export type TypographyProps = Partial<{ fontSize?: CSSValue<"fontSize", true>; fontWeight?: CSSValue<"fontWeight", true>; lineHeight?: CSSValue<"lineHeight", true>; letterSpacing?: CSSValue<"letterSpacing", true>; textAlign?: CSSValue<"textAlign">; fontFamily?: CSSValue<"fontFamily">; }>; export declare const typography: (props: TypographyProps) => ResponsiveStyle;