import React from "react";
/**
 * @component GitBranchIcon
 * @description
 * Outline git-branch glyph for source-control signifiers.
 *
 * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
 *
 * @see https://design.activecollab.com/docs/foundations/icons
 */
declare const GitBranchIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & {
    gradient?: string;
}, "ref"> & React.RefAttributes<SVGSVGElement>>;
export default GitBranchIcon;
//# sourceMappingURL=GitBranch.d.ts.map