import React from "react"; export interface SelectItem { icon?: JSX.Element; label: string; condition?: boolean; active?: boolean; handleClick?: () => void; } export interface SelectOrangeProps { classname?: string; title?: string; selectItems: Array; width?: string; buttonWidth?: string; isScroll?: boolean; align?: string; noArrow?: boolean; buttonColor?: string; color?: string; autoOpen?: boolean; } declare const ButtonSelectOrange: ({ classname, title, selectItems, width, buttonWidth, isScroll, align, noArrow, buttonColor, color, autoOpen, }: SelectOrangeProps) => React.JSX.Element; export default ButtonSelectOrange;