import { SVGProps } from 'react';
/**
 * Renders an information/about icon.
 *
 * This icon is typically used in UI elements that provide additional information
 * or "about" details to the user.
 *
 * @param props - SVG properties augmented with an optional `size`
 * @private internal subcomponent used by various components
 */
export declare function AboutIcon(props: SVGProps<SVGSVGElement> & {
    size?: number;
}): import("react/jsx-runtime").JSX.Element;
