import React from 'react'; export interface SelectionPropsType { title?: string; titleWidth?: string; titleDescription?: string; placeholder?: string; inputDescription?: string; value?: string; disabled?: boolean; arrow?: 'up' | 'down' | 'right' | 'none'; hidebottomline?: boolean; inputDescStyle?: React.CSSProperties; onClick?: () => void; showTitleIcon?: boolean; titleIconSrc?: string; titleIconFunc?: () => void; isTitleUp?: boolean; error?: string; inputAriaLabel?: string; }