import React from "react";

//#region src/ActionList/Description.d.ts
type ActionListDescriptionProps = {
  /**
   * Secondary text style variations.
   *
   * - `"inline"` - Secondary text is positioned beside primary text.
   * - `"block"` - Secondary text is positioned below primary text.
   */
  variant?: 'inline' | 'block';
  className?: string;
  style?: React.CSSProperties;
  /**
   * Whether the inline description should truncate the text on overflow.
   */
  truncate?: boolean;
};
//#endregion
export { ActionListDescriptionProps };