import { type StyleProp, type ViewStyle } from 'react-native'; import type { ChipType, IconType, SizeType } from '../../utils/TypesUtil'; export interface ChipProps { link: string; label?: string; imageSrc?: string; icon?: IconType; variant?: ChipType; size?: Exclude; disabled?: boolean; style?: StyleProp; } export declare function Chip({ link, imageSrc, icon, variant, size, disabled, label, style }: ChipProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=index.d.ts.map