import { ComponentPropsWithRef } from 'react'; /** * Renders an accessible Facebook SVG icon. * * The component forwards received props onto the root `` element to allow external customization (for example `className`, `style`, `ref`, and event handlers). The SVG includes an `aria-label` of "Facebook". * * @param props - Props to spread onto the root SVG element (e.g., `className`, `style`, `ref`, event handlers) * @returns The SVG element representing the Facebook logo */ export declare function Facebook(props: ComponentPropsWithRef<"svg">): import("react").JSX.Element;