import { TextStyle } from '../../designSystem/zeniConstants'; import { CompareMode } from './compareMode'; export interface Props { selectedMode: CompareMode; title: string; backgroundColor?: string; menuPosition?: "left" | "right"; optionBackgroundColor?: string; optionTextStyle?: TextStyle; selectedOptionBackgroundColor?: string; titleColor?: string; titleTextAlignment?: "flex-start" | "flex-end" | "center"; titleTextStyle?: TextStyle; onCompareModeChanged: (newCompareMode: CompareMode) => void; } export default function CompareModePicker({ title, selectedMode, onCompareModeChanged, backgroundColor, optionBackgroundColor, selectedOptionBackgroundColor, optionTextStyle, titleTextStyle, titleTextAlignment, titleColor, menuPosition, }: Props): import("react/jsx-runtime").JSX.Element;