import { ComponentPropsWithRef } from 'react'; /** * Renders the Figma logo as an inline SVG icon with built-in accessibility attributes. * * The icon uses role="img" and aria-label="Figma" for screen readers and contains * five colored paths representing the Figma brand colors. * * @param props - Props forwarded to the root `` element * @returns An accessible SVG element containing the multicolor Figma logo */ export declare function Figma(props: ComponentPropsWithRef<"svg">): import("react").JSX.Element;