import React, { type RefObject } from 'react'; interface IconProps { /** * A string representing the CSS class to be applied to the LogoO2Icon element to override its default styling. */ className?: string; /** * A string representing the color to be applied. */ color1?: string; /** * A number or string representing the height of the LogoO2Icon element. */ height?: number | string; /** * The `ref` property represents a reference to the SVG element, allowing for direct manipulation or access to the DOM node. */ ref?: RefObject; /** * The `testId` property represents a unique identifier, usually in the form of a string, assigned to a component for testing purposes. */ testId?: string; /** * A number or string representing the height of the LogoO2Icon element. */ width?: number | string; } /** * The `LogoO2` component is a functional component designed to render a customizable SVG element representing an Icon. * It receives several props through the `LogoO2Props` interface, allowing for customization of class, color, dimensions, and testing identifier. * * @param props The component props. * @param props.className A string representing the CSS class to be applied to the LogoO2Icon element to override its default styling. * @param props.color1 A string representing the color to be applied to the Icon. * @param props.height A number or string representing the height of the LogoO2Icon element. * @param props.ref A reference to the SVG element, allowing for direct manipulation or access to the DOM node. * @param props.testId A string representing a unique identifier assigned to the component for testing purposes. * @param props.width A number or string representing the height of the LogoO2Icon element. * @returns A React element representing the `LogoO2` component with the specified properties. * * @example * ```tsx * const LogoO2Component = ; * ``` */ export declare const LogoO2: { ({ className, color1, height, ref, testId, width }: IconProps): React.JSX.Element; displayName: string; }; export {};