import React from "react";
/**
 * @component DescriptionIcon
 * @description
 *
 * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
 * The Icon component is
 * customizable, allowing for variations in size, color, and style to fit the needs of the application.
 *
 * @prop {string} [gradient] - Optional CSS linear-gradient string to apply a custom fill.
 * Format: "linear-gradient(<angle>deg, <color1>, <color2>, ...)"
 *
 * @example
 * return (
 * <DescriptionIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
 * )
 *
 * @example
 * return (
 *   <DescriptionIcon className="mr-2" />
 * )
 *
 * @see
 * https://system.activecollab.com/?path=/story/foundation-icons-icons--icons
 * @see
 * https://design.activecollab.com/docs/foundations/icons
 */
declare const DescriptionIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & {
    gradient?: string;
}, "ref"> & React.RefAttributes<SVGSVGElement>>;
export default DescriptionIcon;
//# sourceMappingURL=Description.d.ts.map