/// type MenuItem = { title: string; icon?: JSX.Element; action: () => void; }; type SliderMenuProps = { items: MenuItem[]; width: number; arrowColor?: string; activeArrowColor?: string; borderColor?: string; backgroundColor?: string; itemBackgroundColor?: string; itemWidth?: number; itemHeight?: number; itemBorder?: string; fontSize?: number; activeItemBorderColor?: string; activeItemBoxShadow?: string; }; declare const SliderMenu: ({ items, width, arrowColor, activeArrowColor, borderColor, backgroundColor, itemBackgroundColor, itemWidth, itemHeight, itemBorder, fontSize, activeItemBorderColor, activeItemBoxShadow, }: SliderMenuProps) => import("react/jsx-runtime").JSX.Element; export default SliderMenu; //# sourceMappingURL=SliderMenu.d.ts.map