import { ComponentPropsWithRef } from 'react'; /** * Renders an "X" icon as an SVG React component. * * @param props - Props to spread onto the underlying `svg` element (e.g., className, style, ref). * @returns The SVG element representing the "X" icon with its path filled by `currentColor`. */ export declare function X(props: ComponentPropsWithRef<"svg">): import("react").JSX.Element;