import { ThemingProps } from "../theme/types.js";
import { TypographyProps } from "../system/typography.js";
import { SystemProps } from "../system/system.js";
import { ReactNode } from "react";

//#region src/t/t.types.d.ts
type TProps = SystemProps & ThemingProps<'T'> & {
  /** Alias for textAlign prop. @deprecated */align?: TypographyProps['textAlign']; /** Alias for textTransform prop. @deprecated */
  casing?: TypographyProps['textTransform']; /** Displays component as inline-flex and centers content veritcally. */
  centerV?: boolean; /** Alias for textTransform prop. @deprecated */
  decoration?: TypographyProps['textDecoration']; /** Displays given text if no children are provided. */
  text?: ReactNode; /** Alias for fontWeight prop. @deprecated */
  weight?: TypographyProps['fontWeight'];
};
//#endregion
export { TProps };

//# sourceMappingURL=t.types.d.ts.map