import { ForwardRefComponent } from "../utils/polymorphic.js";
import React from "react";

//#region src/Truncate/Truncate.d.ts
type TruncateProps = React.HTMLAttributes<HTMLElement> & {
  title: string;
  inline?: boolean;
  expandable?: boolean;
  maxWidth?: number | string;
};
declare const Truncate: ForwardRefComponent<"div", TruncateProps>;
//#endregion
export { type TruncateProps, Truncate as default };