import React from "react"; import { ViewProps } from "react-native"; export type ButtonGroupProps = { /** * Boolean value indicating whether or not the button group should align vertically or not. */ vertical?: boolean; }; export type ButtonGroupContextType = { /** * Indicates that the item in the context is the first item in the button group. */ isFirstItem: boolean; /** * Indicates that the item in the context is the last item in the button group. */ isLastItem: boolean; }; export declare const ButtonGroupContext: React.Context; export declare const ButtonGroup: { ({ vertical, children }: ButtonGroupProps & ViewProps): React.JSX.Element; displayName: string; };