import React, { ReactNode } from "react";
export type TypographyProps = {
    variant?: "h1" | "h2" | "h3";
    align?: "center" | "right" | "left";
    className?: string;
    children: ReactNode;
};
declare const _default: React.ForwardRefExoticComponent<TypographyProps & React.RefAttributes<HTMLDivElement>>;
export default _default;
//# sourceMappingURL=typography.d.ts.map