import React from 'react';
export interface CloseIconProps extends React.ComponentProps<'svg'> {
    /** Icon width and height, `var(--icon-size)` by default */
    size?: string;
}
export declare function CloseIcon({ size, style, ...others }: CloseIconProps): import("react/jsx-runtime").JSX.Element;
export declare namespace CloseIcon {
    var displayName: string;
}
