import React from 'react'; import { ViewStyle, StyleProp, TextStyle } from 'react-native'; import { RneFunctionComponent, InlinePressableProps } from '../helpers'; declare type ButtonComponent = React.ReactElement; declare type ButtonObject = { element: React.ElementType; }; export interface ButtonGroupProps extends InlinePressableProps { button?: object; Component?: typeof React.Component; onPress?(...args: any[]): void; buttons?: (string | ButtonComponent | ButtonObject)[]; 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; } export declare const ButtonGroup: RneFunctionComponent; export {};