import React from 'react'; export type ChipPressableProps = { children: string; isSelected?: boolean; maxWidth?: number; onPress?: () => void; testID?: string; }; declare const ChipPressable: ({ children, isSelected, maxWidth, onPress, testID, }: ChipPressableProps) => React.JSX.Element; export default ChipPressable;