import React from "react";
/**
 * @component GitMergeIcon
 * @description
 * Outline git merge glyph for source-control signifiers. Matches
 * GitPullRequestIcon, but the incoming branch runs as a connector line into
 * the upper-left node instead of ending in an arrowhead, signifying a merge.
 *
 * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
 *
 * @see https://design.activecollab.com/docs/foundations/icons
 */
declare const GitMergeIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & {
    gradient?: string;
}, "ref"> & React.RefAttributes<SVGSVGElement>>;
export default GitMergeIcon;
//# sourceMappingURL=GitMerge.d.ts.map