import { EMProps, StrongProps } from './Typography.types'; /** * lineheight * 1.9 p li * * 1.6818 h1 h2 h3 * * 1.45 // Inline code * 1.5 // Image ToC Search Result * * 1.625 // Text Area Text Input */ declare const Text: import("node_modules/@stitches/react/types/styled-component").StyledComponent<"span", { outline?: boolean | "true" | undefined; spaced?: boolean | "true" | undefined; family?: "display" | "default" | "serif" | "code" | "mono" | undefined; size?: number | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | undefined; truncate?: boolean | "true" | undefined; variant?: "default" | "primary" | "secondary" | "tertiary" | "info" | "danger" | "warning" | "success" | undefined; weight?: "2" | "3" | "4" | 2 | 3 | 4 | undefined; }, { xs: "(min-width: 480px)"; sm: "(min-width: 640px)"; md: "(min-width: 768px)"; lg: "(min-width: 1024px)"; xl: "(min-width: 1280px)"; }, import("node_modules/@stitches/react/types/css-util").CSS<{ xs: "(min-width: 480px)"; sm: "(min-width: 640px)"; md: "(min-width: 768px)"; lg: "(min-width: 1024px)"; xl: "(min-width: 1280px)"; }, {}, import("node_modules/@stitches/react/types/config").DefaultThemeMap, {}>>; declare const EM: { (props: EMProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const Strong: { (props: StrongProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Text; export { EM, Strong };