import React from 'react'; interface FilterChipProps { label: string; leftIcon?: any; rightIcon?: any; onPress?: () => void; count?: number; countColor?: string; disabled?: boolean; selected?: boolean; size?: 'small' | 'medium'; shape?: 'pill' | 'round'; variant?: 'outline' | 'neutralLow'; } declare const FilterChip: React.FC; export default FilterChip; //# sourceMappingURL=FilterChip.d.ts.map