import React from "react"; export interface TypographyProps extends React.HTMLAttributes { variant?: "h1" | "h2" | "h3" | "h4" | "body" | "button" | "caption"; children?: React.ReactNode; } export declare const Typography: ({ variant, ...props }: TypographyProps) => import("@emotion/react/jsx-runtime").JSX.Element; //# sourceMappingURL=Typography.d.ts.map