import React from "react";
/**
 * @component GitPullRequestDraftIcon
 * @description
 * Outline git pull-request glyph for a draft (work-in-progress) pull request.
 * Matches GitPullRequestIcon, but the angled connector line into the target
 * branch is dotted to signify the draft state, while the arrowhead stays solid.
 *
 * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
 *
 * @see https://design.activecollab.com/docs/foundations/icons
 */
declare const GitPullRequestDraftIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & {
    gradient?: string;
}, "ref"> & React.RefAttributes<SVGSVGElement>>;
export default GitPullRequestDraftIcon;
//# sourceMappingURL=GitPullRequestDraft.d.ts.map