export interface CloseIconProps extends React.ComponentPropsWithoutRef<'svg'> {
    /** Icon width and height, `var(--icon-size)` by default */
    size?: string;
}
export declare const CloseIcon: import("react").ForwardRefExoticComponent<CloseIconProps & import("react").RefAttributes<SVGSVGElement>>;
