import { FC } from "react"; export interface ChipProps { title: string; subtitle?: string; image?: string; onPress?: () => void; } export declare const Chip: FC;