import React from 'react';
/**
 * Renders a save icon.
 *
 * This icon is typically used in buttons that trigger the saving of data,
 * configurations, or agent sources.
 *
 * @param props - SVG properties augmented with an optional `size`
 * @private internal subcomponent used by various components
 */
export declare function SaveIcon({ size, color, ...props }: {
    size?: number;
    color?: string;
} & React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
