import { textColors, textSize } from '../Text/Text'; type Props = { labelActiveColor?: textColors; labelDeactiveColor?: textColors; activeButtonColor?: string; selected: boolean; onPress: () => void; item: { label: string; value: string; }; textSize?: textSize; isShadow?: boolean; }; declare const ButtonItem: ({ labelActiveColor, labelDeactiveColor, activeButtonColor, selected, onPress, item: { label }, textSize, isShadow, }: Props) => JSX.Element; export default ButtonItem;