import React from "react";
/**
 * @component GitRepositoryIcon
 * @description
 * Outline repository glyph (a stacked database cylinder) used as a
 * source-control / repository signifier.
 *
 * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
 *
 * @see https://design.activecollab.com/docs/foundations/icons
 */
declare const GitRepositoryIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & {
    gradient?: string;
}, "ref"> & React.RefAttributes<SVGSVGElement>>;
export default GitRepositoryIcon;
//# sourceMappingURL=GitRepository.d.ts.map