import React from "react";
/**
 * @component CloudDeployIcon
 * @description
 * Outline cloud glyph with an upward arrow through the middle for
 * deploy/upload-to-cloud signifiers. The cloud's bottom edge has a cutout so
 * it does not intersect the arrow shaft.
 *
 * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
 *
 * @see https://design.activecollab.com/docs/foundations/icons
 */
declare const CloudDeployIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & {
    gradient?: string;
}, "ref"> & React.RefAttributes<SVGSVGElement>>;
export default CloudDeployIcon;
//# sourceMappingURL=CloudDeploy.d.ts.map