import React from 'react'; import { ViewStyle, StyleProp, TextStyle } from 'react-native'; import { RneFunctionComponent } from '../helpers'; export declare type ButtonGroupProps = { button?: object; Component?: typeof React.Component; onPress?(...args: any[]): void; buttons?: (string | React.ReactElement<{}>)[]; containerStyle?: StyleProp; textStyle?: StyleProp; selectedTextStyle?: StyleProp; selectedButtonStyle?: StyleProp; underlayColor?: string; selectedIndex?: number | null; selectedIndexes?: number[]; activeOpacity?: number; onHideUnderlay?(): void; onShowUnderlay?(): void; setOpacityTo?: (value: number) => void; innerBorderStyle?: { color?: string; width?: number; }; buttonStyle?: StyleProp; buttonContainerStyle?: StyleProp; selectMultiple?: boolean; disabled?: boolean | number[]; disabledStyle?: StyleProp; disabledTextStyle?: StyleProp; disabledSelectedStyle?: StyleProp; disabledSelectedTextStyle?: StyleProp; vertical?: boolean; }; declare const ButtonGroup: RneFunctionComponent; export { ButtonGroup }; declare const _default: React.FunctionComponent>, "button" | "disabled" | "onPress" | "activeOpacity" | "onHideUnderlay" | "onShowUnderlay" | "underlayColor" | "Component" | "containerStyle" | "disabledStyle" | "textStyle" | "buttonStyle" | "buttons" | "selectedTextStyle" | "selectedButtonStyle" | "selectedIndex" | "selectedIndexes" | "setOpacityTo" | "innerBorderStyle" | "buttonContainerStyle" | "selectMultiple" | "disabledTextStyle" | "disabledSelectedStyle" | "disabledSelectedTextStyle" | "vertical">> | React.ForwardRefExoticComponent>>; export default _default;