import { Property } from 'csstype'; import React from 'react'; export type ChipPressableGroupItem = { label: string; value: string; testID?: string; }; export type ChipPressableGroupProps = { data: ChipPressableGroupItem[]; value: string; chipWidth?: Property.Width; onChange: (nextValue: string) => void; testID?: string; fluid?: boolean; }; declare const ChipPressableGroup: ({ data, value, chipWidth, onChange, testID, fluid, }: ChipPressableGroupProps) => React.JSX.Element; export default ChipPressableGroup;