/// import { SvgIconProps } from '@mui/material/SvgIcon'; export interface TrailingCloseIconProps extends SvgIconProps { /** Width/height in px (square); forwarded to `sx` when set */ size?: number | string; /** * Stroke color for the path outline (source asset used `white` for contrast). * Use `currentColor` for a single-color icon driven by `color` / `sx.color`. */ strokeColor?: string; /** Outline width (SVG units); default matches source asset */ strokeWidthSvg?: number; } declare function TrailingCloseIcon({ size, strokeColor, strokeWidthSvg, sx, className, ...props }: TrailingCloseIconProps): import("react").JSX.Element; export default TrailingCloseIcon;