import React from 'react'; import { ViewStyle, TextStyle, StyleProp } from 'react-native'; import { SpacingProps } from '../../../theme'; import { TestableProps } from '../../common/test'; export type ChipVariant = 'solid' | 'outline'; export type ChipColor = 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info' | string; export type ChipSize = 'small' | 'medium' | 'large' | number; export interface ChipProps extends SpacingProps, TestableProps { label?: React.ReactNode | string; icon?: React.ReactNode | { name: string; size?: number; color?: string; type?: string; }; closable?: boolean | React.ReactNode; onClose?: () => void; selected?: boolean; variant?: ChipVariant; color?: ChipColor; size?: ChipSize; style?: StyleProp; textStyle?: StyleProp; } declare const Chip: React.FC; export default Chip; //# sourceMappingURL=Chip.d.ts.map