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

//#region src/message/message.types.d.ts
type MessageProps = SystemProps & ThemingProps<'Message'> & {
  /** Displays given text if no children are provided. */text?: ReactNode; /** If provided, it shows the avatar instead of the status icon */
  avatar?: AvatarProps;
};
//#endregion
export { MessageProps };

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