import { Variants } from "./Typography.constants.js";
import { AllHTMLAttributes, ElementType, ReactNode } from "react";

//#region src/components/Typography/Typography.types.d.ts
interface TypographyProps extends AllHTMLAttributes<HTMLElement> {
  children?: ReactNode;
  element?: ElementType;
  fullStyle?: boolean;
  inlineStyle?: boolean;
  variant?: `${Variants}`;
  xs?: boolean;
  disableClickTracking?: boolean;
}
//#endregion
export { TypographyProps };
//# sourceMappingURL=Typography.types.d.ts.map