import React from "react";
/**
 * @component GitPullRequestClosedIcon
 * @description
 * Outline git pull-request glyph for a closed (unmerged) pull request.
 * The left branch matches GitPullRequestIcon (two nodes and a connecting line).
 * On the right, the incoming branch is shown as two evenly spaced dots leading
 * up to an X node, signifying that the pull request was closed without merging.
 *
 * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
 *
 * @see https://design.activecollab.com/docs/foundations/icons
 */
declare const GitPullRequestClosedIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & {
    gradient?: string;
}, "ref"> & React.RefAttributes<SVGSVGElement>>;
export default GitPullRequestClosedIcon;
//# sourceMappingURL=GitPullRequestClosed.d.ts.map