import React, { FunctionComponent, AriaRole, Ref } from "react"; import VibeComponentProps from "../../../types/VibeComponentProps"; export interface CustomSvgIconProps extends VibeComponentProps { onClick?: (event: React.MouseEvent) => void; src: string | object; ariaLabel?: string; tabIndex?: number; role?: AriaRole; ariaHidden?: boolean; clickable?: boolean; replaceToCurrentColor?: boolean; customColor?: string; ref?: Ref; } declare const CustomSvgIcon: FunctionComponent; export default CustomSvgIcon;