import * as Icons from 'phosphor-react-native'; declare type PhosphorIcons = keyof typeof Icons; interface Props { LeftIcon?: PhosphorIcons; label: string; RightIcon?: PhosphorIcons; selected?: boolean; disabled?: boolean; type?: 'icon' | 'avatar'; avatarSrc?: string; onIconLeftPress?: () => void; onIconRightPress?: () => void; onPress?: () => void; } /** * @LeftIcon Icon rendered on the left * @label Chip title * @RightIcon Icon rendered on the right * @selected current selected status * @disabled current disabled status * @type chip variant style type **/ export declare const Chip: ({ LeftIcon, label, RightIcon, selected, disabled, type, avatarSrc, onIconLeftPress, onIconRightPress, onPress, }: Props) => JSX.Element; export {};