import React, { type RefObject } from 'react'; /** * The `LogOutProps` interface defines the properties that can be passed to the `LogOutIcon` component. * These properties allow customization of the component's CSS class, color, dimensions, and testing identifiers. */ interface LogOutProps { /** * A string representing the CSS class to be applied to the LogOutIcon element to override its default styling. * * @default '' */ className?: string; /** * A string representing the color to be applied. * * @default '#0050FF' */ color1?: string; /** * A number or string representing the height of the LogOutIcon element. * * @default 24 */ 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. * This property is crucial for uniquely identifying components during testing, allowing for more accurate and reliable tests. * * @default 'LogOut' */ testId?: string; /** * A number or string representing the height of the LogOutIcon element. * * @default 24 */ width?: number | string; } /** * The `LogOut` component is a functional component designed to render a customizable SVG element representing an Icon. * It receives several props through the `LogOutProps` 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 LogOutIcon 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 LogOutIcon element. * @param props.ref A RefObject pointing to the SVGSVGElement. * @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 LogOutIcon element. * @returns A React element representing the `Check` component with the specified properties. * * @example * ```tsx * const LogOutComponent = ; * ``` */ export declare const LogOut: { ({ className, color1, height, ref, testId, width }: LogOutProps): React.JSX.Element; displayName: string; }; export {};