type AttachmentIconProps = {
    size?: number;
    color?: string;
};
/**
 * Renders an attachment icon.
 *
 * This icon is typically used in chat interfaces to indicate the ability to
 * upload or view files associated with a message.
 *
 * @param props - SVG properties augmented with an optional `size`
 * @private internal subcomponent used by various components
 */
export declare function AttachmentIcon({ size, color }: AttachmentIconProps): import("react/jsx-runtime").JSX.Element;
export {};
