import { ThemingProps } from "../theme/types.js";
import "../theme/index.js";
import { TypographyProps } from "../system/typography.js";
import { SystemProps } from "../system/system.js";
import "../system/index.js";
//#region src/p/p.types.d.ts
type PProps = SystemProps & ThemingProps<'P'> & {
  /** Alias for textAlign prop. @deprecated */
  align?: TypographyProps['textAlign'];
  /** Alias for textTransform prop. @deprecated */
  casing?: TypographyProps['textTransform'];
  /** Alias for textDecoration prop. @deprecated */
  decoration?: TypographyProps['textDecoration'];
  /** Displays given text if no children are provided. */
  text?: number | string;
  /** Alias for fontWeight prop. @deprecated */
  weight?: TypographyProps['fontWeight'];
};
//#endregion
export { PProps };

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