import { ComponentPropsWithRef } from 'react'; /** * Renders the Kick icon as an inline SVG. * * The root SVG uses viewBox "0 0 512 512" and aria-label "Kick"; received props are spread onto the SVG and can override attributes or receive a ref. * * @param props - Props forwarded to the root SVG element * @returns The SVG element for the Kick icon */ export declare function Kick(props: ComponentPropsWithRef<"svg">): import("react").JSX.Element;