import { RevTypographyTextType, RevTypographyTextVariant } from "../../text/typography/types"; export interface RevInputGroupProps { placeholder?: string; modelValue?: string; disabled?: boolean; inputIcon?: string; showInputLeftIcon?: boolean; showInputRightIcon?: boolean; leftAddonIcon?: string; rightAddonIcon?: string; isLeftAddonIcon?: boolean; isRigthAddonIcon?: boolean; isInvalid?: boolean; leftAddonText?: string; rightAddonText?: string; leftAddonTextType?: RevTypographyTextType; rightAddonTextType?: RevTypographyTextType; leftAddonVariantText?: RevTypographyTextVariant; rightAddonVariantText?: RevTypographyTextVariant; showLeftAddon?: boolean; showRightAddon?: boolean; inputClass?: string; }